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": "FPTU Schedule", "description": "Modern Chrome extension for FPT University students to view and export schedules from FAP system to .ics calendar files.", "version": "3.0.0", "permissions": [ "scripting", "tabs" ], "host_permissions": [ "https:\/\/fap.fpt.edu.vn\/*" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" } }, "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "content_scripts": [ { "matches": [ "https:\/\/fap.fpt.edu.vn\/Exam\/ScheduleExams.aspx", "https:\/\/fap.fpt.edu.vn\/Schedule\/*" ], "js": [ "content.js" ], "run_at": "document_idle" } ] }