ニコニコのマイナス(除外)検索機能を拡張する拡張機能です
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "nico search extention",
"description": "ニコニコのマイナス(除外)検索機能を拡張する拡張機能です",
"version": "1.1.8",
"manifest_version": 3,
"icons": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"permissions": [
"tabs",
"storage",
"contextMenus",
"scripting"
],
"content_scripts": [
{
"matches": [
"*://www.nicovideo.jp/watch/*"
],
"js": [
"content/content.js"
],
"run_at": "document_idle"
},
{
"matches": [
"*://www.nicovideo.jp/tag/*"
],
"js": [
"content/tagChangeDom.js"
],
"run_at": "document_end"
}
],
"options_page": "options/options.html",
"action": {
"default_title": "nico search extention",
"default_popup": "popup/popup.html"
},
"background": {
"service_worker": "background.js",
"type": "module"
}
}