web-api-manager/lib/init.js
2017-10-14 15:24:18 -05:00

7 lines
239 B
JavaScript

/*global window*/
// Initial content script for the Web API manager extension, that creates
// the "namespace" we'll use for all the content scripts in the extension.
(function () {
"use strict";
window.WEB_API_MANAGER = {};
}());