Inspect and view changes in Manga Notifier source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 3,
"name": "Manga Notifier",
"version": "0.1.0",
"description": "This extension will notify you if the latest chapter of the followed manga is released.",
"icons": {
"16": "img/logo-16x16.png",
"48": "img/logo-48x48.png",
"128": "img/logo-128x128.png"
},
"background": {
"service_worker": "background.js"
},
"homepage_url": "https://github.com/TP-O/manga-notifier",
"options_page": "options.html",
"permissions": [
"storage",
"alarms",
"notifications",
"contextMenus",
"scripting"
],
"host_permissions": [
"*://*/*"
],
"action": {
"default_popup": "popup.html"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}