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": "Skool Bookmarks", "version": "1.1", "description": "Save Skool posts with a click and view your bookmarks in one place.", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "permissions": [ "activeTab", "storage", "tabs" ], "host_permissions": [ "https:\/\/*.skool.com\/*", "https:\/\/skoopcrm.vercel.app\/*" ], "action": { "default_popup": "index.html" }, "background": { "service_worker": "background.js", "type": "module" }, "content_scripts": [ { "matches": [ "https:\/\/*.skool.com\/*" ], "js": [ "content.js" ] } ] }