1
0
Fork 0
mirror of https://github.com/gorhill/uMatrix.git synced 2024-06-02 02:14:52 +12:00
This commit is contained in:
Raymond Hill 2014-11-24 20:20:21 -02:00 committed by gorhill
parent 09123d6971
commit 4c12408b1e

View file

@ -21,7 +21,7 @@
// For background page or non-background pages
/* global self, vAPI */
/* global self */
/******************************************************************************/
@ -31,6 +31,9 @@
self.vAPI = self.vAPI || {};
var chrome = self.chrome;
var vAPI = self.vAPI;
/******************************************************************************/
// http://www.w3.org/International/questions/qa-scripts#directions
@ -70,8 +73,6 @@ vAPI.download = function(details) {
/******************************************************************************/
var chrome = self.chrome;
vAPI.getURL = function(path) {
return chrome.runtime.getURL(path);
};