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": "History Searchable",
"description": "Quickly find exactly what you're looking for in your browsing history. The best history search tool with advanced filtering options.",
"version": "1.0.5",
"options_page": "home.html",
"icons": {
"16": "images\/icon-16.png",
"32": "images\/icon-32.png",
"48": "images\/icon-48.png",
"128": "images\/icon-128.png"
},
"action": {
"default_icon": {
"16": "images\/icon-16.png",
"32": "images\/icon-32.png",
"48": "images\/icon-48.png",
"128": "images\/icon-128.png"
}
},
"permissions": [
"scripting",
"tabs",
"storage",
"activeTab",
"unlimitedStorage",
"favicon",
"contextMenus",
"history"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "service_worker.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"service_worker.js"
],
"run_at": "document_end"
}
],
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
}
}