Spanish Conjugation Finder

An extension for finding the conjugations of of selected Spanish words

Was ist Spanish Conjugation Finder?

Spanish Conjugation Finder ist eine Chrome-Erweiterung, die von Grondo entwickelt wurde, und ihr Hauptmerkmal ist "An extension for finding the conjugations of of selected Spanish words".

Erweiterungsscreenshots

screenshot

Spanish Conjugation Finder-Erweiterungs-CRX-Datei herunterladen

Laden Sie Spanish Conjugation Finder-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Spanish Conjugation Finder Spanish Conjugation Finder
ID ffdogpnhhaedakacjnnkpbmkppmiadcn
Offizielle URL https://chromewebstore.google.com/detail/spanish-conjugation-finde/ffdogpnhhaedakacjnnkpbmkppmiadcn
Beschreibung An extension for finding the conjugations of of selected Spanish words
Dateigröße 57.92 KB
Installationsanzahl 131
Aktuelle Version 2.0.0
Letztes Update 2023-11-06
Veröffentlichungsdatum 2022-11-19
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler Grondo
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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": [
                ""
            ]
        }
    ]
}