17 lines
643 B
JavaScript
17 lines
643 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: {
|
|
// The name of the cookie that will be used to push domain
|
|
// configuration information into pages.
|
|
cookieName: "_wamtcstandards",
|
|
|
|
// The value in the packed array of options thats used to
|
|
// include the shouldLog option in the in bitfield encoded in
|
|
// the above cookie.
|
|
shouldLogKey: "shouldLogKey"
|
|
}
|
|
};
|
|
}());
|