this repo has no description
0
fork

Configure Feed

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

prepare for release

+7 -15
+7 -15
manifest.json
··· 1 1 { 2 2 "manifest_version": 3, 3 - "name": "DID Detector", 3 + "name": "Bluesky DID Detector", 4 4 "version": "1.0", 5 - "description": "Detects Decentralized Identifiers (DIDs) in a domain's TXT records and updates the icon.", 5 + "author": "jesse@adhdjesse.com", 6 6 "action": { 7 - "default_icon": { 8 - "48": "logo48_gray.png", 9 - "128": "logo128_gray.png" 10 - } 7 + "default_icon": { "48": "logo48_gray.png", "128": "logo128_gray.png" } 11 8 }, 9 + "default_locale": "en", 10 + "description": "Detects Decentralized Identifiers (DIDs) in a domain's TXT records and links to the associated Bluesky profile.", 12 11 "permissions": ["activeTab", "tabs"], 13 - "background": { 14 - "service_worker": "background.js" 15 - }, 16 - "content_scripts": [ 17 - { 18 - "matches": ["<all_urls>"], 19 - "js": ["content.js"] 20 - } 21 - ] 12 + "background": { "service_worker": "background.js" }, 13 + "content_scripts": [{ "matches": ["<all_urls>"], "js": ["content.js"] }] 22 14 }