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": "Multi-Finder Pro", "version": "1.0", "description": "Find and highlight multiple words on a webpage.", "icons": { "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "action": { "default_icon": "icons\/icon48.png", "default_popup": "popup.html" }, "permissions": [ "storage", "activeTab", "scripting" ], "homepage_url": "https:\/\/github.com\/Sunu03\/multi-finder-pro", "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ], "css": [ "content.css" ] } ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'", "content_scripts": "script-src 'self'; object-src 'self'" }, "background": { "service_worker": "background.js" }, "commands": { "_execute_action": { "suggested_key": { "default": "Ctrl+Shift+F", "mac": "Command+Shift+F" } } } }