Spot Translator

Just click and get the translation right below.

Spot Translator क्या है?

Spot Translator uoneway द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Just click and get the translation right below."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Spot Translator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Most Intuitive Translation Assistant!

📌 With just one click, the translation appears right below the original text, allowing you to view both the original and its translation at a single glance. It's so intuitive!

📌 Supports DeepL, Google, and Naver Papago translation services.

📌 Available in 135 languages including English, Korean, Spanish, Chinese, and more.

Usage
- When hover over text while holding the Alt key, a blue box surrounding the text will be displayed. If you right-click on it, you'll see the translation just below the original.

-  By default, you can use translate by the Google Translate API. However, it is highly recommended to use the DeepL(or Naver Papago) API for higher quality translation.
This requires additional settings to use, see below for details:

https://uoneway.notion.site/Spot-Translator-1826d87aa2d845d093793cee0ca11b29                    

एक्सटेंशन की मूल जानकारी

नाम Spot Translator Spot Translator
ID bgljcgcfhppljahbdkfgeldgfdjknpfa
आधिकारिक URL https://chromewebstore.google.com/detail/spot-translator/bgljcgcfhppljahbdkfgeldgfdjknpfa
विवरण Just click and get the translation right below.
फ़ाइल का आकार 598 KB
स्थापना संख्या 285
वर्तमान संस्करण 0.2.3
अंतिम अपडेट 2023-12-17
प्रकाशन तिथि 2021-03-01
रेटिंग 4.80/5 कुल 5 रेटिंग्स
डेवलपर uoneway
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://uoneway.notion.site/Spot-Translator-1826d87aa2d845d093793cee0ca11b29
गोपनीयता नीति पृष्ठ URL https://uoneway.notion.site/On-the-spot-Translator-Privacy-Policy-for-Chrome-Extension-1203bad8c582447792b3dc2626416911
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "0.2.3",
    "manifest_version": 3,
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "permissions": [
        "storage"
    ],
    "action": {
        "default_icon": "images\/icon.png",
        "default_popup": "options.html",
        "default_title": "Spot Translator"
    },
    "icons": {
        "48": "images\/icon.png"
    },
    "background": {
        "service_worker": "background\/background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script\/external\/jquery-3.7.1.min.js",
                "content-script\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/translator_icons\/*",
                "images\/icon.png"
            ],
            "matches": [
                ""
            ],
            "use_dynamic_url": false
        }
    ],
    "options_ui": {
        "page": "options.html"
    }
}