Data is synced from the Chrome Web Store. View the official store page for the most current information.
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Bluesky to Nightlight", "version": "1.0", "description": "Adds a button to Bluesky which lets you repost posts directly to Nightlight with proper attribution.", "homepage_url": "https:\/\/github.com\/iTenerai\/bluesky-to-nightlight", "icons": { "38": "assets\/38.png", "128": "assets\/128.png" }, "permissions": [ "cookies", "notifications" ], "host_permissions": [ "https:\/\/night-light.cz\/*", "https:\/\/bsky.app\/*" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/bsky.app\/*", "https:\/\/night-light.cz\/*" ], "js": [ "content-script.js" ], "css": [ "styles.css" ] } ], "web_accessible_resources": [ { "resources": [ "assets\/logo_monochrome.png" ], "matches": [ "https:\/\/bsky.app\/*", "https:\/\/night-light.cz\/*" ] } ] }