Manga Subscriber
This allows users to see updates of their manga series on the homepage. It also keeps track which chapters have been read.
Manga Subscriberとは何ですか?
Manga Subscriberはjasonshao8によって開発されたChromeの拡張機能で、その主な機能は「This allows users to see updates of their manga series on the homepage. It also keeps track which chapters have been read.」です。
拡張機能のスクリーンショット
Manga Subscriber拡張機能のCRXファイルをダウンロード
Manga Subscriber拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Have you ever browsed mangareader.net or mangapanda.com and realized how annoying it was to find new updates for all your favorite chapters? Well, now Manga Subscriber allows you to subscribe to manga so that all the updates you care about will be shown first. Manga Subscriber also includes other hot features such as keeping track of already read chapters. You'll never have to worry about remembering where you left off.
拡張機能の基本情報
名前 | |
ID | ipmfeedmdlannjnlfkonkgkhjmmmfllp |
公式URL | https://chrome.google.com/webstore/detail/manga-subscriber/ipmfeedmdlannjnlfkonkgkhjmmmfllp |
説明 | This allows users to see updates of their manga series on the homepage. It also keeps track which chapters have been read. |
ファイルサイズ | 2.34 MB |
インストール数 | 33 |
現在のバージョン | 1.2 |
最終更新日 | 2015-11-04 |
公開日 | 2015-11-04 |
評価 | 5.00/5 合計 3 レビュー |
開発者 | jasonshao8 |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Manga Subscriber", "icons": { "128": "icon.png" }, "permissions": [ "tabs" ], "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "icon.png" }, "description": "This allows users to see updates of their manga series on the homepage. It also keeps track which chapters have been read.", "version": "1.2", "content_scripts": [ { "matches": [ "http:\/\/www.mangareader.net\/*", "http:\/\/www.mangapanda.com\/*" ], "js": [ "Manga_Subscriber.user.js" ] } ] } |