MAL HoverInfo

Show a popup when hovering over MyAnimeList links displaying info about the anime with a button to add it to your Plan to Watch list

Was ist MAL HoverInfo?

MAL HoverInfo ist eine Chrome-Erweiterung, die von rivenation entwickelt wurde, und ihr Hauptmerkmal ist "Show a popup when hovering over MyAnimeList links displaying info about the anime with a button to add it to your Plan to Watch list".

Erweiterungsscreenshots

screenshot
screenshot

MAL HoverInfo-Erweiterungs-CRX-Datei herunterladen

Laden Sie MAL HoverInfo-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

                        A handy extension for people who search for new manga/anime to watch/read on the  internet. This extension displays information from MyAnimeList when you hover over an anime link. Simply hover over the http://myanimelist.net link on any webpage and a helpful popup will appear displaying information about the anime/manga.

This is also helpful for those who have tons of anime on their Plan to Watch list and can't remember what each of them was about. Now instead of painfully clicking through each one of them, simply hover over them and refresh your memory with the image and description.

On top of the information this extension displays, you can also add anime/manga to your Plan to Watch/Read list, straight from the popup!

Firefox version:
https://addons.mozilla.org/en-US/firefox/addon/mal-hoverinfo/

Source code:
https://bitbucket.org/Rivenation/mal-hoverinfo/                    

Grundlegende Informationen zur Erweiterung

Name MAL HoverInfo MAL HoverInfo
ID genfpdnjjiipamobbdidnilpfgejfpeo
Offizielle URL https://chromewebstore.google.com/detail/mal-hoverinfo/genfpdnjjiipamobbdidnilpfgejfpeo
Beschreibung Show a popup when hovering over MyAnimeList links displaying info about the anime with a button to add it to your Plan to Watch list
Dateigröße 72.85 KB
Installationsanzahl 654
Aktuelle Version 2.6
Letztes Update 2016-09-03
Veröffentlichungsdatum 2016-09-03
Bewertung 4.38/5 Insgesamt 37 Bewertungen
Entwickler rivenation
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "MAL HoverInfo",
    "description": "Show a popup when hovering over MyAnimeList links displaying info about the anime with a button to add it to your Plan to Watch list",
    "version": "2.6",
    "manifest_version": 2,
    "options_page": "html\/options.html",
    "background": {
        "scripts": [
            "lib\/jquery-2.1.3.min.js",
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "lib\/jquery-2.1.3.min.js",
                "js\/main.js"
            ],
            "css": [
                "css\/styles.css"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "",
        "storage"
    ],
    "web_accessible_resources": [
        "img\/add_to_ptw.png"
    ],
    "icons": {
        "48": "img\/icon_48.png",
        "128": "img\/icon_128.png"
    }
}