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

MAL HoverInfo란 무엇입니까?

MAL HoverInfo은(는) rivenation에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "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"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

MAL HoverInfo 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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/                    

확장 프로그램 기본 정보

이름 MAL HoverInfo MAL HoverInfo
ID genfpdnjjiipamobbdidnilpfgejfpeo
공식 URL https://chromewebstore.google.com/detail/mal-hoverinfo/genfpdnjjiipamobbdidnilpfgejfpeo
설명 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
파일 크기 72.85 KB
설치 횟수 654
현재 버전 2.6
최근 업데이트 2016-09-03
출시 날짜 2016-09-03
평점 4.38/5 총 37 개의 평점
개발자 rivenation
결제 유형 free
지원되는 언어 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"
    }
}