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": "Toyota Motor North America Link Redirector",
"version": "1.1.3",
"description": "Automatically redirect go\/shortcode or 'go<space>shortcode' patterns to your configured GoLinks server",
"icons": {
"16": "icons\/icon-16.png",
"48": "icons\/icon-48.png",
"128": "icons\/icon-128.png"
},
"background": {
"service_worker": "background\/service-worker.js",
"type": "module"
},
"options_page": "options\/options.html",
"omnibox": {
"keyword": "go"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.bing.com\/*"
],
"js": [
"content\/bing-redirect.js"
],
"run_at": "document_start"
},
{
"matches": [
"*:\/\/www.google.com\/*",
"*:\/\/duckduckgo.com\/*",
"*:\/\/yandex.com\/*",
"*:\/\/search.yahoo.com\/*"
],
"js": [
"content\/search-redirect.js"
],
"run_at": "document_start"
}
],
"permissions": [
"declarativeNetRequest",
"declarativeNetRequestWithHostAccess",
"storage"
],
"host_permissions": [
"*:\/\/go\/*",
"http:\/\/go\/*",
"https:\/\/go\/*",
"*:\/\/*.bing.com\/*",
"*:\/\/www.google.com\/*",
"*:\/\/duckduckgo.com\/*",
"*:\/\/yandex.com\/*",
"*:\/\/search.yahoo.com\/*"
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'; style-src 'self' 'unsafe-inline'"
},
"incognito": "spanning"
}