web-api-manager/lib/init.js

13 lines
359 B
JavaScript
Raw Normal View History

2017-10-14 20:24:18 +00:00
/*global window*/
2017-09-12 22:34:25 +00:00
// Initial content script for the Web API manager extension, that creates
// the "namespace" we'll use for all the content scripts in the extension.
2017-10-14 20:24:18 +00:00
(function () {
"use strict";
window.WEB_API_MANAGER = {
constants: {
cookieName: "wam-temp-cookie",
shouldLogKey: "shouldLogKey"
}
};
2017-10-14 20:24:18 +00:00
}());