mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-06 02:42:33 +01:00
152cea2dfe
This is a first step, the ultimate goal is to remove the need for resources.txt, or at least to reduce to only hotfixes or for trivial resources targeting very specific websites. Most resources will become immutable, i.e. they will be part of uBO's code base. Advantages include easier code maintenance (jshint, syntax highlight), and to make scriptlets more easy to code review by external parties (for example extension store reviewers). TODO: - More scriptlets need to be imported before next release. - Need to make legacy versions of uBO use a legacy version of resources.txt, as all the now obsolete scriptlets will have to be removed once uBO's next release become widespread. - Possibly need to add code to load binary resources so that they can be injected as data: URI. So far it's unclear whether this is really needed. For example, this would be needed if a xmlhttprequest is redirected to an image resource.
44 lines
1.4 KiB
JavaScript
44 lines
1.4 KiB
JavaScript
/*******************************************************************************
|
|
|
|
uBlock Origin - a browser extension to block requests.
|
|
Copyright (C) 2019-present Raymond Hill
|
|
|
|
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/uBlock
|
|
*/
|
|
|
|
(function() {
|
|
'use strict';
|
|
const noopfn = function() {
|
|
};
|
|
window.pbjs = { libLoaded: true };
|
|
const mb = window.MonkeyBroker || {
|
|
addAttribute: noopfn,
|
|
addSlot: function(a) {
|
|
this.slots[a.slot] = {};
|
|
},
|
|
defineSlot: noopfn,
|
|
fillSlot: noopfn,
|
|
go: noopfn,
|
|
inventoryConditionalPlacement: noopfn,
|
|
registerSizeCallback: noopfn,
|
|
registerSlotCallback: noopfn,
|
|
slots: {},
|
|
version: ''
|
|
};
|
|
mb.regSlotsMap = mb.slots;
|
|
window.MonkeyBroker = mb;
|
|
})();
|