Jisho-OJAD

Add pitch accent display to Jisho

Cos'è Jisho-OJAD?

Jisho-OJAD è un'estensione di Chrome sviluppata da Itay Perl, e la sua funzione principale è "Add pitch accent display to Jisho".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Jisho-OJAD

Scarica i file di estensione Jisho-OJAD in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Add pitch accent notation on Jisho.org.

Data is retrieved on the fly from the OJAD database (http://www.gavo.t.u-tokyo.ac.jp/ojad/).                    

Informazioni di Base sull'Estensione

Nome Jisho-OJAD Jisho-OJAD
ID dpaojegkimhndjkkgiaookhckojbmakd
URL Ufficiale https://chromewebstore.google.com/detail/jisho-ojad/dpaojegkimhndjkkgiaookhckojbmakd
Descrizione Add pitch accent display to Jisho
Dimensione del File 35.94 KB
Conteggio Installazioni 1,341
Versione Corrente 1.10
Ultimo Aggiornamento 2023-10-02
Data di Pubblicazione 2019-08-14
Valutazione 3.89/5 Totale 9 Valutazioni
Sviluppatore Itay Perl
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/itayperl/jisho-ojad
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Jisho-OJAD",
    "description": "Add pitch accent display to Jisho",
    "version": "1.10",
    "background": {
        "service_worker": "service_worker.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/jisho.org\/search\/*",
                "*:\/\/www.jisho.org\/search\/*",
                "*:\/\/jisho.org\/word\/*",
                "*:\/\/www.jisho.org\/word\/*"
            ],
            "js": [
                "jquery.js",
                "parse.js",
                "content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/www.gavo.t.u-tokyo.ac.jp\/"
    ]
}