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": "CSS Extractor Pro - Extract Clean CSS Code & Color Palettes", "version": "2.0.0", "description": "Extract clean CSS code from any webpage element & generate complete color palettes. Essential developer tool.", "author": "Will Cousin", "homepage_url": "https:\/\/billyboco.gumroad.com\/l\/lnzys", "permissions": [ "activeTab", "storage", "scripting", "sidePanel" ], "optional_permissions": [ "clipboardWrite" ], "host_permissions": [ "<all_urls>" ], "action": { "default_title": "CSS Inspector" }, "side_panel": { "default_path": "popup.html" }, "icons": { "16": "icons\/icon16.png", "24": "icons\/icon24.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "colorUtils.js", "content.js" ], "css": [ "content.css" ], "run_at": "document_end", "all_frames": false, "match_about_blank": false } ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self';" }, "web_accessible_resources": [ { "resources": [ "icons\/*" ], "matches": [ "<all_urls>" ] } ], "minimum_chrome_version": "88", "offline_enabled": true }