Skip to content

Commit e6c137c

Browse files
committed
v1.0.1 - Updated host permissions for GitHub API URLs
1 parent 10007f6 commit e6c137c

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

dist/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"name":"Bookmarklet Sync from GitHub","short_name":"Favlet Sync","description":"Converts a GitHub repository of JavaScript files to bookmarklets (favlets) and syncs them to your browser favorites bar","homepage_url":"https://github.com/brycewc/bookmarklet-sync-from-github","version":"1.0.0","version_name":"1.0.0","manifest_version":3,"default_locale":"en","minimum_chrome_version":"88","permissions":["bookmarks","storage"],"icons":{"16":"assets/img/16x16.png","24":"assets/img/24x24.png","32":"assets/img/32x32.png","48":"assets/img/48x48.png","128":"assets/img/128x128.png"},"background":{"service_worker":"background.js"},"host_permissions":[],"action":{"default_icon":{"16":"assets/img/16x16.png","24":"assets/img/24x24.png","32":"assets/img/32x32.png","48":"assets/img/48x48.png","128":"assets/img/128x128.png"},"default_title":"Bookmarklet Sync from GitHub","default_popup":"popup.html"}}
1+
{"name":"Bookmarklet Sync from GitHub","short_name":"Favlet Sync","description":"Converts a GitHub repository of JavaScript files to bookmarklets (favlets) and syncs them to your browser favorites bar","homepage_url":"https://github.com/brycewc/bookmarklet-sync-from-github","version":"1.0.1","version_name":"1.0.1","manifest_version":3,"default_locale":"en","minimum_chrome_version":"88","permissions":["bookmarks","storage"],"icons":{"16":"assets/img/16x16.png","24":"assets/img/24x24.png","32":"assets/img/32x32.png","48":"assets/img/48x48.png","128":"assets/img/128x128.png"},"background":{"service_worker":"background.js"},"host_permissions":["https://api.github.com/*","https://raw.githubusercontent.com/*"],"action":{"default_icon":{"16":"assets/img/16x16.png","24":"assets/img/24x24.png","32":"assets/img/32x32.png","48":"assets/img/48x48.png","128":"assets/img/128x128.png"},"default_title":"Bookmarklet Sync from GitHub","default_popup":"popup.html"}}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "bookmarklet-sync-from-github",
33
"description": "Converts a GitHub repository of JavaScript files to bookmarklets (favlets) and syncs them to your browser favorites bar",
4-
"version": "1.0.0",
4+
"version": "1.0.1",
55
"homepage": "https://github.com/brycewc/bookmarklet-sync-from-github",
66
"author": "Bryce Cindrich",
77
"repository": {

release.zip

24 Bytes
Binary file not shown.

src/manifest.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"short_name": "Favlet Sync",
44
"description": "Converts a GitHub repository of JavaScript files to bookmarklets (favlets) and syncs them to your browser favorites bar",
55
"homepage_url": "https://github.com/brycewc/bookmarklet-sync-from-github",
6-
"version": "1.0.0",
7-
"version_name": "1.0.0",
6+
"version": "1.0.1",
7+
"version_name": "1.0.1",
88
"manifest_version": 3,
99
"default_locale": "en",
1010
"minimum_chrome_version": "88",
@@ -22,7 +22,10 @@
2222
"background": {
2323
"service_worker": "background.js"
2424
},
25-
"host_permissions": [],
25+
"host_permissions": [
26+
"https://api.github.com/*",
27+
"https://raw.githubusercontent.com/*"
28+
],
2629
"action": {
2730
"default_icon": {
2831
"16": "assets/img/16x16.png",

0 commit comments

Comments
 (0)