1
0
Fork 0
mirror of https://github.com/gorhill/uMatrix.git synced 2024-05-18 11:13:28 +12:00
uMatrix/src/js/httpsb.js

96 lines
3.5 KiB
JavaScript
Raw Normal View History

2014-10-18 08:01:09 +13:00
/*******************************************************************************
2016-10-23 03:41:08 +13:00
uMatrix - a Chromium browser extension to black/white list requests.
Copyright (C) 2014-2016 Raymond Hill
2014-10-18 08:01:09 +13:00
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see {http://www.gnu.org/licenses/}.
Home: https://github.com/gorhill/uMatrix
*/
2016-10-23 03:41:08 +13:00
'use strict';
2014-10-18 08:01:09 +13:00
/******************************************************************************/
{
const µm = µMatrix;
2014-10-18 08:01:09 +13:00
µm.pMatrix = new µm.Matrix();
2015-05-02 11:27:43 +12:00
µm.pMatrix.setSwitch('matrix-off', 'about-scheme', 1);
2014-11-19 15:18:57 +13:00
µm.pMatrix.setSwitch('matrix-off', 'chrome-extension-scheme', 1);
µm.pMatrix.setSwitch('matrix-off', 'chrome-scheme', 1);
µm.pMatrix.setSwitch('matrix-off', 'moz-extension-scheme', 1);
2014-11-19 15:18:57 +13:00
µm.pMatrix.setSwitch('matrix-off', 'opera-scheme', 1);
2018-08-03 23:50:28 +12:00
µm.pMatrix.setSwitch('matrix-off', 'vivaldi-scheme', 1);
2017-12-14 06:05:43 +13:00
// https://discourse.mozilla.org/t/support-umatrix/5131/157
µm.pMatrix.setSwitch('matrix-off', 'wyciwyg-scheme', 1);
µm.pMatrix.setSwitch('matrix-off', 'behind-the-scene', 1);
2016-10-23 03:41:08 +13:00
µm.pMatrix.setSwitch('referrer-spoof', 'behind-the-scene', 2);
µm.pMatrix.setSwitch('https-strict', 'behind-the-scene', 2);
2017-12-14 06:05:43 +13:00
// Global rules
µm.pMatrix.setSwitch('referrer-spoof', '*', 1);
µm.pMatrix.setSwitch('noscript-spoof', '*', 1);
µm.pMatrix.setSwitch('cname-reveal', '*', 1);
2014-10-24 12:40:48 +13:00
µm.pMatrix.setCell('*', '*', '*', µm.Matrix.Red);
µm.pMatrix.setCell('*', '*', 'css', µm.Matrix.Green);
µm.pMatrix.setCell('*', '*', 'image', µm.Matrix.Green);
µm.pMatrix.setCell('*', '*', 'frame', µm.Matrix.Red);
2017-12-14 06:05:43 +13:00
// 1st-party rules
µm.pMatrix.setCell('*', '1st-party', '*', µm.Matrix.Green);
µm.pMatrix.setCell('*', '1st-party', 'frame', µm.Matrix.Green);
µm.tMatrix = new µm.Matrix();
µm.tMatrix.assign(µm.pMatrix);
}
2014-10-18 08:01:09 +13:00
/******************************************************************************/
µMatrix.hostnameFromURL = function(url) {
var hn = this.URI.hostnameFromURI(url);
return hn === '' ? '*' : hn;
};
/******************************************************************************/
µMatrix.mustBlock = function(srcHostname, desHostname, type) {
return this.tMatrix.mustBlock(srcHostname, desHostname, type);
};
µMatrix.mustAllow = function(srcHostname, desHostname, type) {
return this.mustBlock(srcHostname, desHostname, type) === false;
};
/******************************************************************************/
µMatrix.formatCount = function(count) {
if ( typeof count !== 'number' ) {
return '';
}
var s = count.toFixed(0);
if ( count >= 1000 ) {
if ( count < 10000 ) {
s = '>' + s.slice(0,1) + 'K';
} else if ( count < 100000 ) {
s = s.slice(0,2) + 'K';
} else if ( count < 1000000 ) {
s = s.slice(0,3) + 'K';
} else if ( count < 10000000 ) {
s = s.slice(0,1) + 'M';
} else {
s = s.slice(0,-6) + 'M';
}
}
return s;
};