···13131414- Support for alternative HTTPS method for detecting DID
15151616+### Changed
1717+1818+- Remove permissions for "tabs" as it is not needed
1919+1620## [1.2.0] - 2023-05-03
17211822### Added
+1-1
manifest-firefox.json
···1515 "128": "logo128.png"
1616 },
1717 "description": "Detects Decentralized Identifiers (DIDs) in a domain's TXT records and links to the associated Bluesky profile.",
1818- "permissions": ["activeTab", "tabs", "management", "storage", "<all_urls>"],
1818+ "permissions": ["activeTab", "management", "storage", "<all_urls>"],
1919 "content_security_policy": "script-src 'self'; object-src 'self'",
2020 "background": {
2121 "scripts": ["background.js"]
+1-1
manifest.json
···99 },
1010 "icons": { "48": "logo48.png", "128": "logo128.png" },
1111 "description": "Detects Decentralized Identifiers (DIDs) in a domain's TXT records and links to the associated Bluesky profile.",
1212- "permissions": ["activeTab", "tabs", "storage", "management"],
1212+ "permissions": ["activeTab", "storage", "management"],
1313 "background": { "service_worker": "background.js" },
1414 "content_scripts": [{ "matches": ["<all_urls>"], "js": ["content.js"] }]
1515}