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": "Hacker News Random Story", "version": "1.0", "description": "Explore a random story from Hacker News with a single click.", "permissions": [ "storage" ], "host_permissions": [ "https:\/\/news.ycombinator.com\/*" ], "background": { "service_worker": "sw.js" }, "icons": { "128": "icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/news.ycombinator.com\/*" ], "js": [ "content.js" ], "run_at": "document_idle" } ], "options_page": "options\/options.html", "action": { "default_icon": { "128": "icon.png" } } }