1
0
Fork 0
mirror of https://github.com/gorhill/uMatrix.git synced 2024-06-14 00:05:08 +12:00

interim version number for dev build

This commit is contained in:
gorhill 2015-05-13 14:53:29 -04:00
parent cc6eae5555
commit f3c5815848
2 changed files with 5 additions and 3 deletions

View file

@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "uMatrix",
"short_name": "uMatrix",
"version": "0.9.0.1",
"version": "0.9.0.2",
"description": "__MSG_extShortDesc__",
"icons": {
"16": "img/icon_16.png",

View file

@ -32,6 +32,8 @@ To record distinct net requests
µMatrix.PageRequestStats = (function() {
'use strict';
/******************************************************************************/
// Caching useful global vars
@ -222,8 +224,8 @@ var makeRequestKey = function(uri, reqType) {
var hint = 0x811c9dc5;
var i = uri.length;
while ( i-- ) {
hint ^= uri.charCodeAt(i);
hint += (hint<<1) + (hint<<4) + (hint<<7) + (hint<<8) + (hint<<24);
hint ^= uri.charCodeAt(i) | 0;
hint += (hint<<1) + (hint<<4) + (hint<<7) + (hint<<8) + (hint<<24) | 0;
hint >>>= 0;
}
var key = typeToCode[reqType] || 'z';