TanGo

Simple and quick way to check word and kanji frequencies on the web.

Was ist TanGo?

TanGo ist eine Chrome-Erweiterung, die von log1 entwickelt wurde, und ihr Hauptmerkmal ist "Simple and quick way to check word and kanji frequencies on the web.".

Erweiterungsscreenshots

screenshot

TanGo-Erweiterungs-CRX-Datei herunterladen

Laden Sie TanGo-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

                        Scrapes HTML body text and parses the Japanese on the fly. Great for quick overviews of the frequency of words or kanji within Japanese websites.                    

Grundlegende Informationen zur Erweiterung

Name TanGo TanGo
ID childjcagcbmjcphnacbgmlbeddmgljd
Offizielle URL https://chromewebstore.google.com/detail/tango/childjcagcbmjcphnacbgmlbeddmgljd
Beschreibung Simple and quick way to check word and kanji frequencies on the web.
Dateigröße 15.53 MB
Installationsanzahl 44
Aktuelle Version 0.002
Letztes Update 2021-07-31
Veröffentlichungsdatum 2021-06-16
Entwickler log1
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/LexingtonWhalen/TanGoChrome
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TanGo",
    "description": "Simple and quick way to check word and kanji frequencies on the web.",
    "version": "0.002",
    "manifest_version": 2,
    "icons": {
        "16": ".\/images\/16x16.png",
        "32": ".\/images\/32x32.png",
        "48": ".\/images\/48x48.png",
        "128": ".\/images\/128x128.png"
    },
    "background": {
        "persistent": true,
        "scripts": [
            ".\/kuromoji\/build\/kuromoji.js",
            ".\/js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/js\/content.js",
                ".\/kuromoji\/build\/kuromoji.js"
            ]
        }
    ],
    "options_page": ".\/html\/options.html",
    "browser_action": {
        "default_popup": ".\/html\/popup.html"
    }
}