Multitran popup

Translate words and phrases using multitran.com dictionary

Multitran popup क्या है?

Multitran popup Vitaly Yerofeyevsky द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Translate words and phrases using multitran.com dictionary"।

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

screenshot
screenshot
screenshot

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

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

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

                        Translate words and phrases using multitran.com dictionary.

Source code: github.com/flytaly/multitran-extension

v2.1.0
    - added all language pairs to the list

v2.0.2
   - fixed incorrect toolbar popup width in the recent Chrome versions

v2.0.1
   - fixed some unwanted popup activation after selecting text

v2.0.0
   - upgraded to Manifest V3
   - added tabs in the toolbar popup to quickly switch between language pairs
   - updated lists of interface languages and language pairs
   - minor fixes 

v1.8.0
  - fixed extension crash due to the new site layout
  - added links to other translation groups in the group header

v1.7.0
  - added options to change font and popup sizes

v1.6.2
  - fixed z-index value, to prevent the pop-up overlapping

v1.6.0
  - updated look
  - added buttons and keyboard shortcuts for scrolling translation blocks

v1.5.0
  - added possibility to add shortcut with letters, numbers, and F-keys
  - added item to right-click context menu

v1.4.0
  - added English and Russian words pronunciation from wiktionary.org.                    

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

नाम Multitran popup Multitran popup
ID fbncpmcdhgdolipfkpeckjajpgjdpehj
आधिकारिक URL https://chromewebstore.google.com/detail/multitran-popup/fbncpmcdhgdolipfkpeckjajpgjdpehj
विवरण Translate words and phrases using multitran.com dictionary
फ़ाइल का आकार 123 KB
स्थापना संख्या 1,279
वर्तमान संस्करण 2.1.0
अंतिम अपडेट 2024-01-19
प्रकाशन तिथि 2020-08-24
रेटिंग 4.90/5 कुल 21 रेटिंग्स
डेवलपर Vitaly Yerofeyevsky
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/flytaly/multitran-extension
सहायता पृष्ठ URL https://github.com/flytaly/multitran-extension
समर्थित भाषाएँ en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "default_locale": "en",
    "description": "__MSG_description__",
    "name": "__MSG_name__",
    "short_name": "Multitran-popup",
    "version": "2.1.0",
    "homepage_url": "https:\/\/github.com\/flytaly\/multitran-extension",
    "minimum_chrome_version": "94",
    "background": {
        "service_worker": ".\/dist\/background\/background.js"
    },
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "host_permissions": [
        "https:\/\/www.multitran.com\/*",
        "https:\/\/*.wiktionary.org\/api\/*",
        "https:\/\/*.wikimedia.org\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "templates.html",
                "dist\/styles.css",
                "images\/flags\/*.svg"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "action": {
        "default_title": "__MSG_extension_title__",
        "default_icon": {
            "16": "images\/icon_light-16.png",
            "32": "images\/icon_light-32.png",
            "64": "images\/icon_light-64.png"
        },
        "theme_icons": [
            {
                "dark": "images\/icon-16.png",
                "light": "images\/icon_light-16.png",
                "size": 16
            },
            {
                "dark": "images\/icon-32.png",
                "light": "images\/icon_light-32.png",
                "size": 32
            },
            {
                "dark": "images\/icon-64.png",
                "light": "images\/icon_light-64.png",
                "size": 64
            }
        ],
        "default_popup": "popup.html"
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Alt+M"
            }
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "dist\/content\/content.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "icons": {
        "48": "images\/icon_light-48.png",
        "64": "images\/icon_light-64.png",
        "96": "images\/icon_light-96.png",
        "128": "images\/icon_light-128.png"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    }
}