Manga-Scout
An extension to check for new manga chapters across multiple webpages.
什麼是Manga-Scout?
Manga-Scout是由Florian Riedel開發的Chrome擴展程式,該擴展的主要功能是“An extension to check for new manga chapters across multiple webpages.”。
擴展截圖
下載Manga-Scout擴展crx文件
下載Manga-Scout擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Are you reading manga series that are not on a single page? Your favorite aggregator does not provide notifications? You want to support the translators by reading on their page, but its annoying to track updates across the pages of multiple translation groups? Fret not, Manga-Scout will keep track of all your favorite Mangas across a multitude of Webpages and will notify you, as soon as a new chapter is available. Currently supported: All pages that use the the Madara- or MangaStream-Theme or are built using the Genkan Reader. E.g. asurascans.com, fanfox.net, leviatanscans.com, mangadex.org, reaperscans.com, webtoons.com, zeroscans.com and at least 25 other pages. For a full list visit https://manga.fochlac.com/?pages
擴展基本資訊
名稱 | Manga-Scout |
ID | fdmboijadaabmpkdfikffbgpmibholfo |
官方網址 | https://chromewebstore.google.com/detail/manga-scout/fdmboijadaabmpkdfikffbgpmibholfo |
簡介 | An extension to check for new manga chapters across multiple webpages. |
檔案大小 | 586 KB |
安裝次數 | 179 |
目前版本 | 1.8.4 |
更新時間 | 2022-12-22 |
上架時間 | 2021-09-15 |
評分 | 4.00/5 共 1 次評分 |
開發者 | Florian Riedel |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://manga.fochlac.com |
隱私政策頁面URL | https://manga.fochlac.com?impressum |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Manga-Scout", "version": "1.8.4", "manifest_version": 3, "description": "An extension to check for new manga chapters across multiple webpages.", "icons": { "16": "icons\/manga-16-half.png", "128": "icons\/manga-163-half.png" }, "background": { "service_worker": ".\/sw.js" }, "permissions": [ "alarms", "storage", "activeTab", "scripting" ], "host_permissions": [ "*:\/\/*\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content-script.js" ] } ], "action": { "default_icon": { "19": "icons\/manga-19-half.png", "38": "icons\/manga-32-half.png" }, "default_title": "No new chapters available.", "default_popup": "popup.html" }, "web_accessible_resources": [ { "resources": [ "images\/*", "fonts\/*" ], "extension_ids": [ "fdmboijadaabmpkdfikffbgpmibholfo" ] } ] } |