-
-
Notifications
You must be signed in to change notification settings - Fork 253
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(background sync): Move back to manifest v2 for firefox
Signed-off-by: Marcel Klehr <[email protected]>
- Loading branch information
1 parent
0af1869
commit 355cae7
Showing
4 changed files
with
29 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>Floccus</title> | ||
</head> | ||
<body> | ||
<script src="../../lib/chrome-promise.js"></script> | ||
<script src="../js/background-script.js"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,36 @@ | ||
{ | ||
"manifest_version": 3, | ||
"manifest_version": 2, | ||
"name": "floccus bookmarks sync", | ||
"short_name": "floccus", | ||
"version": "5.0.5", | ||
"version": "5.0.6", | ||
"description": "__MSG_DescriptionExtension__", | ||
"icons": { | ||
"48": "icons/logo.png", | ||
"64": "icons/logo_64.png", | ||
"128": "icons/logo_128.png" | ||
}, | ||
|
||
"browser_specific_settings": { | ||
"applications": { | ||
"gecko": { | ||
"id": "[email protected]", | ||
"strict_min_version": "109.0" | ||
"strict_min_version": "57.0" | ||
} | ||
}, | ||
|
||
"default_locale": "en", | ||
|
||
"permissions": ["alarms", "bookmarks", "storage", "unlimitedStorage", "tabs", "identity"], | ||
"host_permissions": [ | ||
"*://*/*" | ||
], | ||
"content_security_policy": { | ||
"extension_pages": "script-src 'self'; object-src 'self';" | ||
}, | ||
"permissions": ["https://*/", "http://*/", "alarms", "bookmarks", "storage", "unlimitedStorage", "tabs", "identity"], | ||
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';", | ||
|
||
"options_ui": { | ||
"page": "dist/html/options.html", | ||
"browser_style": false | ||
"browser_style": false, | ||
"chrome_style": false | ||
}, | ||
|
||
"action": { | ||
"browser_action": { | ||
"browser_style": false, | ||
"chrome_style": false, | ||
"default_icon": { | ||
"48": "icons/logo.png" | ||
}, | ||
|
@@ -42,6 +39,6 @@ | |
}, | ||
|
||
"background": { | ||
"scripts": ["dist/js/background-script.js"] | ||
"page": "dist/html/background.html" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters