Custom Dictionary

Store words and their definitions, and highlight them on websites

Vad är Custom Dictionary?

Custom Dictionary är en Chrome-tillägg utvecklad av Riki, och dess huvudfunktion är "Store words and their definitions, and highlight them on websites".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot
screenshot

Ladda ner Custom Dictionary-förlängningens CRX-fil

Ladda ner Custom Dictionary-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Custom Dictionary Custom Dictionary
ID gpenoconcglejhmajbjgajimkdpmcogg
Officiell webbadress https://chromewebstore.google.com/detail/custom-dictionary/gpenoconcglejhmajbjgajimkdpmcogg
Beskrivning Store words and their definitions, and highlight them on websites
Filstorlek 44.67 KB
Antal Installationer 55
Aktuell Version 1.2.2
Senast Uppdaterad 2022-05-12
Publiceringsdatum 2022-04-25
Utvecklare Riki
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/rikilele/custom-dict-chrome
Stödda Språk 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"
}