this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #21 from jessejanderson/fix-permissions

authored by

Jesse J. Anderson and committed by
GitHub
e5ba8254 192de8a5

+6 -2
+4
CHANGELOG.md
··· 13 13 14 14 - Support for alternative HTTPS method for detecting DID 15 15 16 + ### Changed 17 + 18 + - Remove permissions for "tabs" as it is not needed 19 + 16 20 ## [1.2.0] - 2023-05-03 17 21 18 22 ### Added
+1 -1
manifest-firefox.json
··· 15 15 "128": "logo128.png" 16 16 }, 17 17 "description": "Detects Decentralized Identifiers (DIDs) in a domain's TXT records and links to the associated Bluesky profile.", 18 - "permissions": ["activeTab", "tabs", "management", "storage", "<all_urls>"], 18 + "permissions": ["activeTab", "management", "storage", "<all_urls>"], 19 19 "content_security_policy": "script-src 'self'; object-src 'self'", 20 20 "background": { 21 21 "scripts": ["background.js"]
+1 -1
manifest.json
··· 9 9 }, 10 10 "icons": { "48": "logo48.png", "128": "logo128.png" }, 11 11 "description": "Detects Decentralized Identifiers (DIDs) in a domain's TXT records and links to the associated Bluesky profile.", 12 - "permissions": ["activeTab", "tabs", "storage", "management"], 12 + "permissions": ["activeTab", "storage", "management"], 13 13 "background": { "service_worker": "background.js" }, 14 14 "content_scripts": [{ "matches": ["<all_urls>"], "js": ["content.js"] }] 15 15 }