1 support issue
- All
- Questions
- Suggestions
- Problems
Axel Segebrecht
Aug 31, 2024
Unable to install on Linux
When trying to download the CRX from the web store, it fails with an error saying "invalid manifest". Manually downloading and attempting to install it also fails with a message stating that: "Package is invalid. Details: Cloud not find key specification for 'command[1].suggested.key: Either specify a key for 'linux' or specify a default key."
I am on Fedora Linux and have tried installing the extension in Chrome, Chromium, Brave, ungoogled Chrome with the same results.
- Report illegal content
- Copy link
Jax Wang
Dec 30, 2024
you can download this extension as a zip, and the unpack it, in the file package.json, you can search `suggested_key`, then you need to add two lines for linux. like "commands": {
"_execute_browser_action": {
"suggested_key": {
"windows": "Alt+Z",
"mac": "Alt+Z",
"linux": "Alt+Z"
},
"description": "open popup.html"
},
"inject-script": {
"suggested_key": {
"windows": "Ctrl+Shift+Y",
"mac": "Command+Shift+Y",
"linux": "Ctrl+Shift+Y"
},
}
}. Then you can enable the developer mode in extension manage page, and install it by load unpacked.
- Report illegal content
- Copy link