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", "name": "YouLearn", "description": "An AI tutor made for you. Go to any YouTube video, website, or public file, and add it to YouLearn.", "version": "1.0", "manifest_version": 3, "permissions": [ "tabs", "activeTab" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "\/public\/logo.png", "48": "\/public\/logo.png", "128": "\/public\/logo.png" } }, "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "scripts\/content.js" ], "css": [ "styles\/content.css" ] } ], "icons": { "16": "\/public\/logo.png", "48": "\/public\/logo.png", "128": "\/public\/logo.png" }, "background": { "service_worker": "scripts\/background.js", "type": "module" }, "web_accessible_resources": [ { "resources": [ "\/public\/logo.png" ], "matches": [ "<all_urls>" ] } ] }