26 lines
573 B
JSON
26 lines
573 B
JSON
{
|
|
"manifest_version": 2,
|
|
"name": "KomSearcher",
|
|
"version": "1.0",
|
|
"description": "A Firefox extension used to request manga from various sites.",
|
|
"permissions": ["activeTab", "tabs"],
|
|
"background": {
|
|
"scripts": ["background.js"]
|
|
},
|
|
"browser_action": {
|
|
"default_icon": "icon.png",
|
|
"default_title": "KomSearcher"
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": [
|
|
"https://mangadex.org/*",
|
|
"https://anilist.co/*",
|
|
"https://kitsu.app/*",
|
|
"https://myanimelist.net/*"
|
|
],
|
|
"js": ["content.js"]
|
|
}
|
|
]
|
|
}
|