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": "Udemy Notes Extractor", "description": "Extracts notes taken from the Udemy cource page and exports it as an HTML or Markdown file", "version": "1.1", "action": { "default_popup": "popup\/index.html", "default_icon": "public\/icons\/logo.png" }, "background": { "service_worker": "background.bundle.js" }, "permissions": [ "activeTab", "scripting", "tabs" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.bundle.js" ] } ] }