Firefox WebExtension (Desktop and Mobile) that lets you share the current tab to Margit.at, frontpage.fyi, etc. with minimal effort.
at main 53 lines 1.2 kB view raw
1{ 2 "manifest_version": 3, 3 "name": "ATProto Social", 4 "description": "Quickly share the current tab to different ATProto services.", 5 "version": "0.1.6", 6 "author": "ATProto Social Contributors", 7 "homepage_url": "https://tangled.org/anton.galiglobal.com/frontpage_firefox_plugin", 8 "icons": { 9 "16": "icons/icon-16.svg", 10 "32": "icons/icon-32.svg", 11 "48": "icons/icon-48.svg", 12 "128": "icons/icon-128.svg" 13 }, 14 "permissions": [ 15 "storage", 16 "tabs", 17 "activeTab" 18 ], 19 "host_permissions": [ 20 "https://*/*" 21 ], 22 "action": { 23 "default_popup": "popup.html", 24 "default_icon": { 25 "16": "icons/icon-16.svg", 26 "32": "icons/icon-32.svg" 27 }, 28 "default_title": "ATProto Submitter" 29 }, 30 "options_ui": { 31 "page": "options.html", 32 "open_in_tab": true, 33 "browser_style": true 34 }, 35 "content_scripts": [ 36 { 37 "matches": ["https://*/*", "http://*/*"], 38 "js": ["content.js"], 39 "run_at": "document_idle" 40 } 41 ], 42 "background": { 43 "scripts": [ 44 "background.js" 45 ] 46 }, 47 "browser_specific_settings": { 48 "gecko": { 49 "id": "frontpage-submitter@example.com", 50 "strict_min_version": "109.0" 51 } 52 } 53}