1-Click Translator
A Translate Browser Extension
What is 1-Click Translator?
1-Click Translator is a Chrome extension developed by huling4u, and its main feature is "A Translate Browser Extension".
Extension Screenshots
Download 1-Click Translator Extension CRX File
Download 1-Click Translator extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
A very simple Google browser plug-in, select the words or statements to be translated, and randomly obtain the query results from the free translation service provider.Support more than 16 translation engines, including Google, Baidu, etc.
Extension Basic Information
Name | 1-Click Translator |
ID | ofbjheffhcmloemhpdlnnjhhfenidnap |
Official URL | https://chromewebstore.google.com/detail/1-click-translator/ofbjheffhcmloemhpdlnnjhhfenidnap |
Description | A Translate Browser Extension |
File Size | 571 KB |
Installation Count | 24 |
Current Version | 0.24.01 |
Last Updated | 2024-02-24 |
Publish Date | 2022-11-22 |
Developer | huling4u |
[email protected] | |
Payment Type | free |
Supported Languages | zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "icons": { "16": "icons\/icon-16x16.png", "48": "icons\/icon-48x48.png", "128": "icons\/icon-128x128.png" }, "permissions": [ "storage" ], "host_permissions": [ "*:\/\/*\/*" ], "action": { "default_title": "Click the mouse to select words and sentences, and click the button to get the translation", "default_popup": "www\/index.html#\/options" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "css": [ "assets\/content.css" ], "js": [ "page-content-script.js" ] } ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" }, "web_accessible_resources": [ { "resources": [ "*" ], "matches": [ "*:\/\/*\/*" ] } ], "name": "1-Click Translator", "short_name": "1-Click Translator", "description": "A Translate Browser Extension", "version": "0.24.01" } |