AnimeTake Watcher

A simple extension that highlights favorited shows on AnimeTake

什麼是AnimeTake Watcher?

AnimeTake Watcher是由Lunyx開發的Chrome擴展程式,該擴展的主要功能是“A simple extension that highlights favorited shows on AnimeTake”。

擴展截圖

screenshot
screenshot
screenshot

下載AnimeTake Watcher擴展crx文件

下載AnimeTake Watcher擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This extension is designed to be used on AnimeTake.com.  You can add shows to your watch list from the download page of any episode.  Shows on your watch list will have their name highlighted in yellow so that you can easily see them on the main page.  Great for keeping track of shows that you want to watch each season without having to remember the names of all of them.  For any comments or bug reports, please send them to [email protected].                    

擴展基本資訊

名稱 AnimeTake Watcher AnimeTake Watcher
ID iemmmdhaohepnnibpbdbeamkgpmkoahj
官方網址 https://chrome.google.com/webstore/detail/animetake-watcher/iemmmdhaohepnnibpbdbeamkgpmkoahj
簡介 A simple extension that highlights favorited shows on AnimeTake
檔案大小 169 KB
安裝次數 88
目前版本 1.0
更新時間 2014-10-11
上架時間 2014-10-11
評分 4.40/5 共 5 次評分
開發者 Lunyx
付費類型 free
擴展官網 http://www.animetake.com
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AnimeTake Watcher",
    "description": "A simple extension that highlights favorited shows on AnimeTake",
    "version": "1.0",
    "background": {
        "scripts": [
            ".\/js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.animetake.com\/*"
            ],
            "js": [
                ".\/js\/jquery-2.0.3.min.js",
                ".\/js\/json.js",
                ".\/js\/jstorage.js",
                ".\/js\/content.js"
            ]
        }
    ],
    "page_action": {
        "default_title": "AnimeTake Watcher",
        "default_icon": "img\/at.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "img\/yoko.png"
    }
}