Custom Dictionary

Store words and their definitions, and highlight them on websites

O que é Custom Dictionary?

Custom Dictionary é uma extensão do Chrome desenvolvida por Riki, e sua principal característica é "Store words and their definitions, and highlight them on websites".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Custom Dictionary

Baixe arquivos de extensão Custom Dictionary no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Custom Dictionary Custom Dictionary
ID gpenoconcglejhmajbjgajimkdpmcogg
URL Oficial https://chromewebstore.google.com/detail/custom-dictionary/gpenoconcglejhmajbjgajimkdpmcogg
Descrição Store words and their definitions, and highlight them on websites
Tamanho do Arquivo 44.67 KB
Contagem de Instalações 55
Versão Atual 1.2.2
Última Atualização 2022-05-12
Data de Publicação 2022-04-25
Desenvolvedor Riki
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/rikilele/custom-dict-chrome
Idiomas Suportados 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"
}