Inspect and view changes in Slash to search source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"background": {
"service_worker": "scripts/background.js"
},
"action": {
"default_icon": "images/slash_to_search.png",
"default_popup": "popup/popup.html"
},
"content_scripts": [
{
"js": [
"scripts/index.js"
],
"matches": [
"http://*/*",
"https://*/*"
],
"run_at": "document_start"
}
],
"description": "Jump to the search box on any website by pressing the forward slash key on your keyboard.",
"icons": {
"48": "images/slash_to_search.png"
},
"manifest_version": 3,
"name": "Slash to search",
"offline_enabled": true,
"options_ui": {
"page": "options/options.html",
"open_in_tab": true
},
"permissions": [
"activeTab",
"storage",
"contextMenus"
],
"short_name": "Slash to search",
"version": "1.0.5"
}