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": "Keep It Clean", "description": "This extension can be used to block objectionable items from video tube websites.", "version": "1.0", "icons": { "16": "assets\/icons\/icon-16.png", "32": "assets\/icons\/icon-32.png", "48": "assets\/icons\/icon-48.png", "128": "assets\/icons\/icon-128.png" }, "content_scripts": [ { "run_at": "document_end", "matches": [ "<all_urls>" ], "js": [ "filter-items.js", "jquery-3.1.0.min.js" ], "css": [ "style.css" ] } ], "background": { "service_worker": "background.js" }, "permissions": [ "storage" ], "action": { "default_icon": "assets\/icons\/icon-48.png", "default_popup": "popup.html" } }