Custom Dictionary

Store words and their definitions, and highlight them on websites

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

Το Custom Dictionary είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Riki, και η κύρια λειτουργία του είναι "Store words and their definitions, and highlight them on websites".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        This highly performant chrome extension allows you to keep track of a custom dictionary of words. Words will be highlighted on web pages, and their definitions will appear as tooltips when hovered over.                    

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

Όνομα Custom Dictionary Custom Dictionary
ID gpenoconcglejhmajbjgajimkdpmcogg
Επίσημο URL https://chromewebstore.google.com/detail/custom-dictionary/gpenoconcglejhmajbjgajimkdpmcogg
Περιγραφή Store words and their definitions, and highlight them on websites
Μέγεθος Αρχείου 44.67 KB
Αριθμός Εγκαταστάσεων 55
Τρέχουσα Έκδοση 1.2.2
Τελευταία Ενημέρωση 2022-05-12
Ημερομηνία Δημοσίευσης 2022-04-25
Προγραμματιστής Riki
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/rikilele/custom-dict-chrome
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Custom Dictionary",
    "version": "1.2.2",
    "action": {
        "default_icon": {
            "16": "icons\/16.png",
            "48": "icons\/48.png",
            "128": "icons\/128.png"
        },
        "default_title": "Custom Dictionary",
        "default_popup": "popup\/popup.html"
    },
    "description": "Store words and their definitions, and highlight them on websites",
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "author": "Riki Singh Khorana",
    "background": {
        "service_worker": "background\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript\/contentScript.js"
            ],
            "css": [
                "contentScript\/contentScript.css"
            ],
            "match_about_blank": true
        }
    ],
    "offline_enabled": true,
    "options_page": "settings\/settings.html",
    "permissions": [
        "storage",
        "contextMenus",
        "tabs"
    ],
    "short_name": "Custom Dict"
}