1-Click Translator

A Translate Browser Extension

Wat is 1-Click Translator?

1-Click Translator is een Chrome-extensie ontwikkeld door huling4u, en de belangrijkste functie is "A Translate Browser Extension".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie 1-Click Translator

Download 1-Click Translator-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam 1-Click Translator 1-Click Translator
ID ofbjheffhcmloemhpdlnnjhhfenidnap
Officiële URL https://chromewebstore.google.com/detail/1-click-translator/ofbjheffhcmloemhpdlnnjhhfenidnap
Beschrijving A Translate Browser Extension
Bestandsgrootte 571 KB
Aantal Installaties 24
Huidige Versie 0.24.01
Laatst Bijgewerkt 2024-02-24
Publicatiedatum 2022-11-22
Ontwikkelaar huling4u
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
}