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",
"name": "Censor",
"version": "2.0.1",
"description": "",
"manifest_version": 3,
"content_scripts": [
{
"matches": [
"https:\/\/mail.google.com\/*"
],
"js": [
"lib\/jquery.min.js"
],
"run_at": "document_start"
},
{
"matches": [
"https:\/\/mail.google.com\/*"
],
"js": [
"content.js"
],
"css": [
"styles\/content.css"
],
"run_at": "document_end"
}
],
"action": {
"default_icon": {
"16": "assets\/icons\/16.png",
"32": "assets\/icons\/32.png",
"48": "assets\/icons\/48.png",
"64": "assets\/icons\/64.png",
"128": "assets\/icons\/128.png"
},
"default_popup": "popup.html"
},
"background": {
"service_worker": "background.js"
},
"icons": {
"16": "assets\/icons\/16.png",
"32": "assets\/icons\/32.png",
"48": "assets\/icons\/48.png",
"128": "assets\/icons\/128.png"
},
"permissions": [
"storage",
"scripting"
],
"host_permissions": [
"https:\/\/mail.google.com\/"
],
"web_accessible_resources": [
{
"resources": [
"assets\/images\/*",
"assets\/icons\/*",
"*.map"
],
"matches": [
"https:\/\/mail.google.com\/*"
]
}
]
}