Skip to content

Commit

Permalink
v1.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
hamachi25 committed Sep 14, 2024
1 parent cec9949 commit 02c0f94
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 23 deletions.
16 changes: 5 additions & 11 deletions addon/chrome/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 3,
"name": "Pixiv Infinite Scroll",
"version": "1.6",
"version": "1.6.2",
"description": "__MSG_extensionDescription__",
"default_locale": "en",
"icons": {
Expand All @@ -11,12 +11,8 @@
},
"content_scripts": [
{
"matches": [
"https://www.pixiv.net/*"
],
"js": [
"script/main.js"
]
"matches": ["https://www.pixiv.net/*"],
"js": ["script/main.js"]
}
],
"action": {
Expand All @@ -27,7 +23,5 @@
},
"default_popup": "script/popup.html"
},
"permissions": [
"storage"
]
}
"permissions": ["storage"]
}
16 changes: 5 additions & 11 deletions addon/firefox/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "Pixiv Infinite Scroll",
"version": "1.6.1",
"version": "1.6.2",
"description": "__MSG_extensionDescription__",
"default_locale": "en",
"icons": {
Expand All @@ -11,12 +11,8 @@
},
"content_scripts": [
{
"matches": [
"https://www.pixiv.net/*"
],
"js": [
"script/main.js"
]
"matches": ["https://www.pixiv.net/*"],
"js": ["script/main.js"]
}
],
"browser_action": {
Expand All @@ -28,7 +24,5 @@
},
"default_popup": "script/popup.html"
},
"permissions": [
"storage"
]
}
"permissions": ["storage"]
}
2 changes: 1 addition & 1 deletion script/pixivinfinitescroll.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// @grant GM_getValue
// @grant GM_setValue
// @grant GM_registerMenuCommand
// @version 1.6
// @version 1.6.2
// @author chimaha
// @description Add infinite scroll feature to Pixiv.
// @description:ja Pixivに無限スクロール機能を追加します。
Expand Down

0 comments on commit 02c0f94

Please sign in to comment.