ScanLingua

Scan, recognize and translate parts of your screen.

ScanLingua क्या है?

ScanLingua SpaceHoboDev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Scan, recognize and translate parts of your screen."।

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

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

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

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

                        ScanLingua provides Japanese text recognition of selected screen areas with translation, kanji annotation and audio.

    - Check on subtitles, manga panels or any Japanese text;
    - Edit recognized text and alter annotations;
    - Create and export kanji cards to Anki via Anki-connect;
    - Free and open source.

ScanLingua use various Google APIs. 
Free API key creation is mandatory to use extension functions.

Source code: https://github.com/OuterSpaceHobo/ScanLingua                    

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

नाम ScanLingua ScanLingua
ID mkkiocfjoeoolffbpldkglpfclmdiafn
आधिकारिक URL https://chromewebstore.google.com/detail/scanlingua/mkkiocfjoeoolffbpldkglpfclmdiafn
विवरण Scan, recognize and translate parts of your screen.
फ़ाइल का आकार 248 KB
स्थापना संख्या 288
वर्तमान संस्करण 0.0.3.2
अंतिम अपडेट 2023-09-19
प्रकाशन तिथि 2023-04-05
रेटिंग 3.00/5 कुल 2 रेटिंग्स
डेवलपर SpaceHoboDev
ईमेल [email protected]
भुगतान के प्रकार free
गोपनीयता नीति पृष्ठ URL https://www.freeprivacypolicy.com/live/ea477aad-2400-459f-9cff-cf83e396fb5d
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ScanLingua",
    "description": "Scan, recognize and translate parts of your screen.",
    "version": "0.0.3.2",
    "manifest_version": 3,
    "background": {
        "service_worker": "index.js",
        "type": "module"
    },
    "minimum_chrome_version": "92",
    "permissions": [
        "storage",
        "activeTab"
    ],
    "action": {
        "default_title": "ScanLingua",
        "default_popup": "index.html"
    },
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "48": "icon-48.png",
        "100": "icon-100.png"
    },
    "commands": {
        "take-screenshot": {
            "suggested_key": {
                "default": "Ctrl+Shift+S",
                "mac": "MacCtrl+Shift+S",
                "windows": "Ctrl+Shift+S",
                "linux": "Ctrl+Shift+S",
                "chromeos": "Ctrl+Shift+S"
            },
            "description": "take-screenshot"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ]
        }
    ]
}