This extension allows the user to Add treats on Treatstream
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"name": "Treatstream",
"description": "This extension allows the user to Add treats on Treatstream",
"version": "1.0.89",
"background": {
"scripts": [
"jquery-3.0.0.js",
"background.js"
],
"persistent": true
},
"permissions": [
"cookies",
"<all_urls>",
"webRequest"
],
"browser_action": {
"default_icon": "icon48.png",
"default_popup": "popup.html"
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"content_scripts": [
{
"matches": [
"https://*/*",
"http://*/*"
],
"css": [
"style.css"
],
"js": [
"jquery-3.0.0.js",
"jquery-ui.min.js",
"jquery.lazyload.min.js",
"devtools-detector.js",
"script.js"
],
"run_at": "document_end"
}
],
"browser_specific_settings": {
"gecko": {
"id": "{d273b844-a448-4ecc-8d75-293a33928fad}"
}
}
}