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": "Historease", "description": "Search through your browser history with ease - Completely private and crazy fast!", "version": "1.1", "author": "[email protected]", "permissions": [ "history", "activeTab", "scripting", "storage", "webNavigation", "bookmarks" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ], "run_at": "document_idle" } ], "host_permissions": [ "<all_urls>" ], "background": { "service_worker": "background.bundle.js" }, "action": { "default_popup": "popup.html" }, "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "options_page": "options.html", "content_security_policy": { "extension_pages": "script-src 'self' 'wasm-unsafe-eval'" }, "web_accessible_resources": [ { "resources": [ "logo.png", "settings.svg" ], "matches": [ "<all_urls>" ] } ] }