Skip to content

Commit

Permalink
comply firefox requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
crkos committed Sep 13, 2023
1 parent d537111 commit 4c37584
Show file tree
Hide file tree
Showing 11 changed files with 50 additions and 40 deletions.
Binary file added linkwarden-code.zip
Binary file not shown.
42 changes: 21 additions & 21 deletions package-lock.json

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

Binary file added public/128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed public/favicon-16x16.png
Binary file not shown.
Binary file removed public/favicon-32x32.png
Binary file not shown.
Binary file removed public/favicon-48x48.png
Binary file not shown.
47 changes: 29 additions & 18 deletions src/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,36 +2,47 @@
"manifest_version": 3,
"name": "Linkwarden",
"description": "The browser extension for Linkwarden.",
"homepage_url": "https://github.com/linkwarden/linkwarden-extension",
"homepage_url": "https://linkwarden.app/",
"version": "1.0.0",
"action": {
"default_popup": "./index.html",
"default_icon": {
"16": "./favicon-16x16.png",
"32": "./favicon-32x32.png",
"48": "./favicon-48x48.png"
"16": "./16.png",
"32": "./32.png",
"48": "./48.png",
"128": "./128.png"
},
"default_title": "Linkwarden"
},
"options_ui": {
"page": "./src/pages/Options/options.html"
},
"icons": {
"16": "./favicon-16x16.png",
"32": "./favicon-32x32.png",
"48": "./favicon-48x48.png"
"16": "./16.png",
"32": "./32.png",
"48": "./48.png",
"128": "./128.png"
},
"permissions": ["storage", "activeTab", "scripting", "tabs"],
"host_permissions": ["*://*/*"],
"background": {
"service_worker": "./background.js",
"type": "module"
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Alt+Shift+K",
"mac": "MacCtrl+Shift+K"
"permissions": [
"storage",
"activeTab",
"scripting",
"tabs"
],
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "109.0"
},
"host_permissions": [
"*://*/*"
],
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Alt+Shift+K",
"mac": "MacCtrl+Shift+K"
}
}
}
}
Expand Down
1 change: 0 additions & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ export default defineConfig({
rollupOptions: {
input: {
main: path.resolve(__dirname, 'index.html'),
background: path.resolve(__dirname, 'src/pages/Background/index.ts'),
options: path.resolve(__dirname, 'src/pages/Options/options.html'),
},
output: {
Expand Down

0 comments on commit 4c37584

Please sign in to comment.