11 lines
341 B
JavaScript
11 lines
341 B
JavaScript
// 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 = {
|
|
constants: {
|
|
cookieName: "_wamtcstandards",
|
|
shouldLogKey: "shouldLogKey"
|
|
}
|
|
};
|
|
}());
|