Skip to content

Commit

Permalink
Bump to 3.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
abarre committed Mar 16, 2022
1 parent d15eff8 commit 3fa5be0
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Chrome and Firefox web extension for Fasterize

# Install

- [Firefox](https://github.com/fasterize/fasterize-web-extension/releases/download/3.4.0/fasterize_status-3.4.0-an+fx.xpi)
- [Firefox](https://github.com/fasterize/fasterize-web-extension/releases/download/3.4.1/fasterize_status-3.4.1-an+fx.xpi)
- [Chrome](https://chrome.google.com/webstore/detail/fasterize-status/pophpmnchlcddhhilmnopbahlaohdfig)

# Dev
Expand Down
34 changes: 27 additions & 7 deletions app/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Fasterize Status",
"version": "3.4.0",
"version": "3.4.1",
"manifest_version": 2,
"description": "See detailed information on a fasterized page",
"icons": {
Expand All @@ -14,13 +14,31 @@
"default_icon": "icons/store/icon.png"
},
"background": {
"scripts": ["vendor/browser-polyfill.js", "mapping.js", "frz-request.js", "main.js"]
"scripts": [
"vendor/browser-polyfill.js",
"mapping.js",
"frz-request.js",
"main.js"
]
},
"permissions": ["webRequest", "webRequestBlocking", "tabs", "cookies", "storage", "http://*/*", "https://*/*"],
"permissions": [
"webRequest",
"webRequestBlocking",
"tabs",
"cookies",
"storage",
"http://*/*",
"https://*/*"
],
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["vendor/browser-polyfill.js", "contentscript.js"],
"matches": [
"<all_urls>"
],
"js": [
"vendor/browser-polyfill.js",
"contentscript.js"
],
"run_at": "document_idle"
}
],
Expand All @@ -31,6 +49,8 @@
"strict_min_version": "48.0"
}
},
"web_accessible_resources": ["show_deferjs_trace.js"],
"web_accessible_resources": [
"show_deferjs_trace.js"
],
"incognito": "spanning"
}
}
4 changes: 4 additions & 0 deletions app/update-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,10 @@
{
"version": "3.4.0",
"update_link": "https://github.com/fasterize/fasterize-web-extension/releases/download/3.4.0/fasterize_status-3.4.0-an+fx.xpi"
},
{
"version": "3.4.1",
"update_link": "https://github.com/fasterize/fasterize-web-extension/releases/download/3.4.1/fasterize_status-3.4.1-an+fx.xpi"
}
]
}
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Fasterize-Status",
"version": "3.4.0",
"version": "3.4.1",
"description": "See the status of the request.",
"main": "main.js",
"scripts": {
Expand Down Expand Up @@ -32,4 +32,4 @@
"prettier": "^1.14.3",
"web-ext": "6.7.0"
}
}
}

0 comments on commit 3fa5be0

Please sign in to comment.