Jisho Kioku

Remembers kanji looked up in Jisho.org and other stuff.

Τι είναι το Jisho Kioku;

Το Jisho Kioku είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://japanesewithanime.com, και η κύρια λειτουργία του είναι "Remembers kanji looked up in Jisho.org and other stuff.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Jisho Kioku

Λήψη αρχείων επέκτασης Jisho Kioku σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Jisho Kioku is a browser extension for jisho.org, the Japanese-English dictionary website.

How to use: https://www.japanesewithanime.com/jisho-kioku

Once installed, it adds the following features to jisho:

1. When looking up kanji by its radicals, it shows in green the kanji you've clicked on recently. It also shows a list of the last kanji you've clicked on.
2. It adds a search box that lets you filter the radicals by their names. It also shows the names of the radicals if you hover them.
3. It also lets you show only the radicals of other kanji.
4. It lets you bookmark terms by clicking on a "memorize" button. Bookmarked terms are kept in a list.
5. It remembers your latest searches on the dictionary for convenience.

The extension saves the data recorded to your browser / Chrome profile.

This extension is NOT supported by jisho.org, it was simply made by one of its users.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Jisho Kioku Jisho Kioku
ID icnpljpaddnphinehahcfincggpgcadb
Επίσημο URL https://chromewebstore.google.com/detail/jisho-kioku/icnpljpaddnphinehahcfincggpgcadb
Περιγραφή Remembers kanji looked up in Jisho.org and other stuff.
Μέγεθος Αρχείου 49.41 KB
Αριθμός Εγκαταστάσεων 764
Τρέχουσα Έκδοση 0.3.5
Τελευταία Ενημέρωση 2018-03-09
Ημερομηνία Δημοσίευσης 2018-03-09
Αξιολόγηση 4.40/5 Συνολικά 5 Αξιολογήσεις
Προγραμματιστής https://japanesewithanime.com
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://www.japanesewithanime.com/2017/01/jisho-kioku-extension.html
Διεύθυνση URL της Σελίδας Βοήθειας https://www.japanesewithanime.com/2017/01/jisho-kioku-extension.html
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Jisho Kioku",
    "manifest_version": 2,
    "version": "0.3.5",
    "description": "Remembers kanji looked up in Jisho.org and other stuff.",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "options_page": "options\/options.html",
    "permissions": [
        "storage",
        "unlimitedStorage"
    ],
    "background": {
        "scripts": [
            "event-page.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/classic.jisho.org\/kanji\/radicals"
            ],
            "js": [
                "classic-jisho-kioku.js"
            ],
            "css": [
                "classic-jisho-kioku.css"
            ]
        },
        {
            "matches": [
                "*:\/\/beta.jisho.org\/*",
                "*:\/\/jisho.org\/*"
            ],
            "js": [
                "kioku-data.js",
                "kana-table.js",
                "radical-table.js",
                "new-jisho-radicals.js",
                "new-jisho-search.js",
                "new-jisho-kanji.js",
                "new-jisho-deck.js",
                "new-jisho-kioku.js"
            ],
            "css": [
                "new-jisho-kioku.css",
                "new-jisho-radicals.css"
            ]
        }
    ]
}