Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"version": "1.0.0",
"name": "Web Translator",
"short_name": "Web Translator",
"chrome_settings_overrides": {
"search_provider": {
"encoding": "UTF-8",
"favicon_url": "https:\/\/web-translater-tab.com\/wp-content\/uploads\/2021\/10\/icon-128.png",
"is_default": true,
"keyword": "Keyword",
"name": "Web Translator",
"search_url": "https:\/\/search.web-translater-tab.com\/search?q={searchTerms}"
}
},
"icons": {
"128": "icons\/128x128.png"
},
"action": {
"browser_style": true,
"default_title": "Web Translator"
},
"chrome_url_overrides": {
"newtab": "options.html"
},
"description": "Translate selected text in your prefered language",
"permissions": [
"storage",
"contextMenus"
],
"content_scripts": [
{
"matches": [
"http:\/\/translate.google.com\/*",
"https:\/\/*.bing.com\/*"
],
"run_at": "document_start",
"js": [
"js\/jquery.min.js",
"js\/content_script.js"
],
"css": []
}
],
"background": {
"service_worker": "background.js"
}
}