Meet your personal Void, the most customizable portal to the web you'll ever use. AI-powered search included.
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",
"manifest_version": 3,
"default_locale": "en",
"name": "__MSG_extensionName__",
"version": "0.0.8",
"description": "__MSG_extensionDescription__",
"permissions": [
"storage",
"alarms",
"declarativeNetRequest",
"notifications",
"management",
"history"
],
"background": {
"service_worker": "background.iife.js",
"type": "module"
},
"action": {
"default_popup": "popup/index.html",
"default_icon": "icon-34.png"
},
"chrome_url_overrides": {
"newtab": "new-tab/index.html"
},
"host_permissions": [
"https://*/*"
],
"chrome_settings_overrides": {
"homepage": "https://askvoid.com",
"search_provider": {
"encoding": "UTF-8",
"favicon_url": "https://askvoid.com/favicon.ico",
"is_default": true,
"keyword": "void",
"name": "Void",
"search_url": "https://askvoid.com/search?q={searchTerms}"
},
"startup_pages": [
"https://askvoid.com"
]
},
"icons": {
"128": "icon-128.png"
},
"externally_connectable": {
"matches": [
"https://askvoid.com/*",
"https://askvoid.org/*"
]
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*",
"<all_urls>"
],
"js": [
"content/index.iife.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"*.js",
"*.css",
"*.svg",
"icon-128.png",
"icon-34.png"
],
"matches": [
"*://*/*"
]
}
]
}