התרעות צבע אדום כמו בטלוויזיה
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 2,
"name": "צבע אדום",
"version": "0.1.3",
"author": "Nir Tamir",
"description": "התרעות צבע אדום כמו בטלוויזיה",
"permissions": [
"activeTab",
"notifications",
"storage"
],
"background": {
"scripts": [
"build/background.js"
]
},
"icons": {
"192": "logo192.png",
"512": "logo512.png"
},
"browser_action": {
"default_icon": {
"192": "logo192.png",
"512": "logo512.png"
},
"default_title": "Popup",
"default_popup": "popup.html"
},
"options_page": "options.html",
"web_accessible_resources": [
"build/injected.js"
],
"content_scripts": [
{
"matches": [
"file://*/*",
"http://*/*",
"https://*/*"
],
"js": [
"build/content.js"
],
"run_at": "document_end"
}
]
}