Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Know Your Environment",
"version": "1.3",
"description": "Manage and customize environment indicators for your websites.",
"icons": {
"128": "icons\/logo.png"
},
"permissions": [
"storage",
"activeTab"
],
"options_page": "index.html",
"background": {
"service_worker": "background.js"
},
"action": {
"default_icon": "icons\/logo.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
}
}