mirror of
https://github.com/m1k1o/neko.git
synced 2025-04-28 18:06:20 +02:00
docs firefox: guide on how to find extension ID.
This commit is contained in:
parent
c1ccae4ac4
commit
c9ca4e7144
1 changed files with 14 additions and 0 deletions
|
@ -158,6 +158,20 @@ By default, the browsers in Neko do not allow installing extensions except for t
|
|||
}
|
||||
```
|
||||
|
||||
<details>
|
||||
<summary>How to find the extension ID?</summary>
|
||||
|
||||
Extension IDs for Firefox are not available in the URL like in Chrome. You can find the extension ID by navigating to the `about:debugging#/runtime/this-firefox` page and clicking on the extension you want to install. The extension ID will be displayed in the URL.
|
||||
|
||||
Another way is to find the extension on the [Official Add-ons Webpage](https://addons.mozilla.org/en-US/firefox/), then open DevTools (<code>F12</code>) and go to the `Console` tab. Enter the following command:
|
||||
|
||||
```javascript
|
||||
Object.keys(JSON.parse(document.getElementById('redux-store-state').textContent).addons.byGUID)[0]
|
||||
```
|
||||
|
||||
This will return the ID of the first extension on the page.
|
||||
</details>
|
||||
|
||||
### Chromium-based Browsers {#chromium-based}
|
||||
|
||||
The full configuration options for the Chromium-based policy JSON file can be found in the [Chrome Enterprise](https://chromeenterprise.google/policies) documentation.
|
||||
|
|
Loading…
Add table
Reference in a new issue