Spanish Conjugation Finder

An extension for finding the conjugations of of selected Spanish words

O que é Spanish Conjugation Finder?

Spanish Conjugation Finder é uma extensão do Chrome desenvolvida por Grondo, e sua principal característica é "An extension for finding the conjugations of of selected Spanish words".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Spanish Conjugation Finder

Baixe arquivos de extensão Spanish Conjugation Finder 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 extension allows you find conjugations of Spanish verbs by simply highlighting the text, right clicking, and selecting the 'Find Conjugations' item in the context menu.

The extension will open a side panel to spanishdict.com/conjugate with your verb. If not a verb, the site will try to translate the word you selected.                    

Informações Básicas da Extensão

Nome Spanish Conjugation Finder Spanish Conjugation Finder
ID ffdogpnhhaedakacjnnkpbmkppmiadcn
URL Oficial https://chromewebstore.google.com/detail/spanish-conjugation-finde/ffdogpnhhaedakacjnnkpbmkppmiadcn
Descrição An extension for finding the conjugations of of selected Spanish words
Tamanho do Arquivo 57.92 KB
Contagem de Instalações 131
Versão Atual 2.0.0
Última Atualização 2023-11-06
Data de Publicação 2022-11-19
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor Grondo
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Spanish Conjugation Finder",
    "description": "An extension for finding the conjugations of of selected Spanish words",
    "version": "2.0.0",
    "background": {
        "service_worker": "js\/serviceworker.js"
    },
    "permissions": [
        "contextMenus",
        "sidePanel",
        "declarativeNetRequest",
        "storage"
    ],
    "side_panel": {
        "default_path": "html\/sidePanel.html"
    },
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset_1",
                "enabled": true,
                "path": "rules_1.json"
            }
        ]
    },
    "host_permissions": [
        "https:\/\/www.spanishdict.com\/*"
    ],
    "icons": {
        "16": "assets\/16.png",
        "32": "assets\/32.png",
        "48": "assets\/48.png",
        "128": "assets\/128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "*.png"
            ],
            "matches": [
                ""
            ]
        }
    ]
}