Papago Translate

View translations easily as you browse the web.

Was ist Papago Translate?

Papago Translate ist eine Chrome-Erweiterung, die von kkd927 entwickelt wurde, und ihr Hauptmerkmal ist "View translations easily as you browse the web.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Papago Translate-Erweiterungs-CRX-Datei herunterladen

Laden Sie Papago Translate-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        View AI translations easily as you browse the web.

Highlight a section of text and click on Translate icon next to it to translate it to your language. Or, to translate the entire page you're visiting, click the translate icon on the browser toolbar. 

* This service works based Papago Open API, the NMT & SMT translation system, which is provided by Naver.

* This service is operated by individuals in the hope of helping users surf the web without experiencing a language barrier, and this service is not intended for any profit.

* You can check the Open APIs provided by Naver via https://developers.naver.com/main/                    

Grundlegende Informationen zur Erweiterung

Name Papago Translate Papago Translate
ID enddgifdbfoefnelepppgaabobdfbcpe
Offizielle URL https://chrome.google.com/webstore/detail/enddgifdbfoefnelepppgaabobdfbcpe
Beschreibung View translations easily as you browse the web.
Dateigröße 237 KB
Installationsanzahl 154,585
Aktuelle Version 1.5.2
Letztes Update 2023-03-09
Veröffentlichungsdatum 2019-06-28
Bewertung 4.34/5 Insgesamt 623 Bewertungen
Entwickler kkd927
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://papago-chrome.com/privacy-policy.html
Unterstützte Sprachen en,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "version": "1.5.2",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "\/src\/js\/lib\/require.js",
                "\/src\/js\/lib\/require-cs.js",
                "\/src\/js\/content\/app.js"
            ],
            "css": [
                "\/src\/css\/papagoTrans.css",
                "\/src\/css\/loaders.min.css",
                "\/src\/css\/jquery-ui.min.css"
            ],
            "run_at": "document_end",
            "all_frames": true
        },
        {
            "matches": [
                "https:\/\/papago-chrome.com\/favorites"
            ],
            "js": [
                "\/src\/js\/lib\/jquery-2.0.3.min.js",
                "\/src\/js\/favorites\/app.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "\/src\/js\/lib\/jquery-2.0.3.min.js",
            "\/src\/js\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": "\/icons\/papago19.png",
        "default_popup": "\/src\/html\/popup.html"
    },
    "options_page": "\/src\/html\/options.html",
    "options_ui": {
        "page": "\/src\/html\/options.html",
        "chrome_style": false
    },
    "icons": {
        "19": "\/icons\/papago19.png",
        "48": "\/icons\/papago48.png",
        "128": "\/icons\/papago128.png"
    },
    "web_accessible_resources": [
        "\/icons\/*",
        "\/src\/*"
    ],
    "permissions": [
        "storage",
        "tabs"
    ]
}