Custom Dictionary

Store words and their definitions, and highlight them on websites

Qu'est-ce que Custom Dictionary ?

Custom Dictionary est une extension Chrome développée par Riki, et sa fonction principale est "Store words and their definitions, and highlight them on websites".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Custom Dictionary

Téléchargez les fichiers d'extension Custom Dictionary au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Custom Dictionary Custom Dictionary
ID gpenoconcglejhmajbjgajimkdpmcogg
URL Officiel https://chromewebstore.google.com/detail/custom-dictionary/gpenoconcglejhmajbjgajimkdpmcogg
Description Store words and their definitions, and highlight them on websites
Taille du Fichier 44.67 KB
Nombre d'Installations 55
Version Actuelle 1.2.2
Dernière Mise à Jour 2022-05-12
Date de Publication 2022-04-25
Développeur Riki
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/rikilele/custom-dict-chrome
Langues Prises en Charge 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"
}