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": "Classify - Hide & Censor Words",
"version": "0.11",
"description": "Instantly censor words & hide sensitive information during live streams, screen shares, online meetings or everyday uses.",
"permissions": [
"storage",
"scripting",
"tabs",
"activeTab"
],
"host_permissions": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"https:\/\/www.googleapis.com\/*"
],
"background": {
"service_worker": "background.js"
},
"options_page": "options.html",
"content_scripts": [
{
"matches": [
"https:\/\/*\/*"
],
"css": [
"classify.css"
],
"js": [
"content.js"
],
"run_at": "document_end"
}
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/icon-16.png",
"32": "icons\/icon-32.png",
"48": "icons\/icon-48.png",
"128": "icons\/icon-128.png"
}
},
"icons": {
"16": "icons\/icon-16.png",
"32": "icons\/icon-32.png",
"48": "icons\/icon-48.png",
"128": "icons\/icon-128.png"
}
}