Translating with Papago

An extension that utilizes Naver's Papago translation engine.

Τι είναι το Translating with Papago;

Το Translating with Papago είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον perrylohmann, και η κύρια λειτουργία του είναι "An extension that utilizes Naver's Papago translation engine.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Translating with Papago

Λήψη αρχείων επέκτασης Translating with Papago σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This extension uses Naver's Papago translation service to translate text through the toolbar popup or directly on web pages.

When highlighting text on web pages, clicking the icon that appears will instantly show you it's translation. If you don't like this functionality, there are settings for restricting when this icon displays while you are web browsing.

Alternatively, you can use the toolbar popup to quickly translate text. 13 languages are supported through Papago's AI translation service, along with automatic language detection.

Translating entire web pages is also possible, just by clicking "Translate this page" within the context menu.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Translating with Papago Translating with Papago
ID kjlcghnjglnjdagnpdhphkbljflodhda
Επίσημο URL https://chrome.google.com/webstore/detail/translating-with-papago/kjlcghnjglnjdagnpdhphkbljflodhda
Περιγραφή An extension that utilizes Naver's Papago translation engine.
Μέγεθος Αρχείου 90.13 KB
Αριθμός Εγκαταστάσεων 10,310
Τρέχουσα Έκδοση 1.0.0
Τελευταία Ενημέρωση 2022-11-03
Ημερομηνία Δημοσίευσης 2022-11-03
Αξιολόγηση 2.63/5 Συνολικά 16 Αξιολογήσεις
Προγραμματιστής perrylohmann
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en,es,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Joe Lohmann",
    "background": {
        "service_worker": "background\/background.js",
        "type": "module"
    },
    "action": {
        "default_icon": {
            "512": "icons\/512.png",
            "128": "icons\/128.png",
            "64": "icons\/64.png",
            "48": "icons\/48.png",
            "38": "icons\/38.png",
            "32": "icons\/32.png",
            "19": "icons\/19.png",
            "16": "icons\/16.png"
        },
        "default_title": "Papago Translator",
        "default_popup": "popup\/popup.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "css": [
                "content\/content.css"
            ],
            "js": [
                "lib\/browser-polyfill.min.js",
                "content\/content.js"
            ]
        }
    ],
    "default_locale": "en",
    "description": "__MSG_extDescription__",
    "icons": {
        "512": "icons\/512.png",
        "128": "icons\/128.png",
        "64": "icons\/64.png",
        "48": "icons\/48.png",
        "32": "icons\/32.png"
    },
    "manifest_version": 3,
    "name": "__MSG_extName__",
    "options_ui": {
        "page": "options\/options.html",
        "browser_style": false
    },
    "permissions": [
        "storage",
        "tabs",
        "contextMenus"
    ],
    "host_permissions": [
        "https:\/\/papago-extension.herokuapp.com\/api\/v1\/*"
    ],
    "version": "1.0.0",
    "web_accessible_resources": [
        {
            "resources": [
                "\/icons\/*"
            ],
            "matches": [
                ""
            ]
        }
    ]
}