My Dictionary

Get definition or translation of the selected word(s) in popup (multiple choices)

Τι είναι το My Dictionary;

Το My Dictionary είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον HardeepTheDev, και η κύρια λειτουργία του είναι "Get definition or translation of the selected word(s) in popup (multiple choices)".

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

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης My Dictionary

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

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

                        NOTE: A new and improved extension is available.

https://chrome.google.com/webstore/detail/lookup-in-popup/akaefbhdlppmfdecoakjogglbjgacdhm


Get definition or translation of selected words in popup, you can choose from multiple dictionaries, add new dictionaries, add websites that are not dictionaries, for more information watch the demo video https://youtu.be/kOOT5MK76UM

Default shortcut: 
- Alt+m on Windows
- Option+m on Mac

Github: https://github.com/harry-private/my_dictionary

CHANGELOG

https://github.com/harry-private/my_dictionary/blob/master/CHANGELOG.md                    

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

Όνομα My Dictionary My Dictionary
ID dlmmgckeognpojabkkcablldnlfnfgpo
Επίσημο URL https://chromewebstore.google.com/detail/my-dictionary/dlmmgckeognpojabkkcablldnlfnfgpo
Περιγραφή Get definition or translation of the selected word(s) in popup (multiple choices)
Μέγεθος Αρχείου 108 KB
Αριθμός Εγκαταστάσεων 817
Τρέχουσα Έκδοση 1.0.01
Τελευταία Ενημέρωση 2021-03-09
Ημερομηνία Δημοσίευσης 2020-06-20
Αξιολόγηση 4.38/5 Συνολικά 13 Αξιολογήσεις
Προγραμματιστής HardeepTheDev
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/harry-private/my_dictionary
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "My Dictionary",
    "description": "Get definition or translation of the selected word(s) in popup (multiple choices)",
    "version": "1.0.01",
    "permissions": [
        "storage",
        "webRequest",
        "webRequestBlocking",
        ""
    ],
    "background": {
        "scripts": [
            "data\/internal_libs\/dictionaries_data.js",
            "data\/background\/background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": "data\/icons\/icon16.png",
        "default_title": "My Dictionary",
        "default_popup": "data\/options\/dictionary_for_menu_bar\/dictionary_for_menu_bar.html"
    },
    "options_ui": {
        "page": "data\/options\/options.html",
        "open_in_tab": true
    },
    "icons": {
        "16": "data\/icons\/icon16.png",
        "48": "data\/icons\/icon48.png",
        "128": "data\/icons\/icon128.png"
    },
    "web_accessible_resources": [
        "data\/icons\/icon_original.png",
        "data\/iframe\/iframe.html",
        "data\/icons\/loading.gif"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "data\/content_scripts\/index.js"
            ],
            "css": [
                "data\/content_scripts\/index.css"
            ],
            "all_frames": true
        }
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+M"
            },
            "description": "Activate the extension"
        }
    }
}