Update README.
This commit is contained in:
parent
3ef7ce8590
commit
94c3c7e71c
|
@ -57,9 +57,9 @@ Share web pages right from the toolbar button. It's an excelent alternative to t
|
|||
|
||||
## Permissions / Privacy
|
||||
|
||||
**This add-on needs to:** Access browser tabs.
|
||||
This extension doesn't require any permissions.
|
||||
|
||||
This permission is required to **access Title and URL** of the current (active) tab of your browser. The only data needed is the URL of your instance(s), and it is stored locally on your browser/computer.
|
||||
It only accesses the Title and URL of the current (active) tab of the browser. The only data needed is the URL of your instance(s), and it is stored locally on your browser/computer.
|
||||
|
||||
## Screenshots
|
||||
|
||||
|
|
|
@ -58,6 +58,7 @@
|
|||
"ts-jest": "26.4.4",
|
||||
"ts-loader": "^9.1.1",
|
||||
"typescript": "^4.2.4",
|
||||
"web-ext": "^6.6.0",
|
||||
"web-ext-types": "3.2.1",
|
||||
"webpack": "5.18.0",
|
||||
"webpack-cli": "4.4.0",
|
||||
|
|
|
@ -5,7 +5,6 @@ const items = generateArray(instance);
|
|||
const containerItems = document.getElementById('root');
|
||||
containerItems.innerHTML = '';
|
||||
|
||||
// TODO custom checkboxes (custom form tailwind)
|
||||
items.forEach((value) => {
|
||||
const name = value.name;
|
||||
const html = `
|
||||
|
|
Loading…
Reference in New Issue