Inspect and view changes in Learnitab: Study with K-POP Idol, Remote Jobs, Ramadan Tracker, and ChatGPT source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 3,
"name": "Learnitab: Study with K-POP Idol, Remote Jobs, Ramadan Tracker, and ChatGPT",
"description": "Customize your new tab with KPOP backgrounds, productivity tools, remote jobs, and ChatGPT access for enhanced studying.",
"version": "1.8",
"permissions": [
"storage",
"declarativeNetRequestWithHostAccess",
"sidePanel",
"activeTab",
"geolocation",
"search"
],
"chrome_url_overrides": {
"newtab": "index.html"
},
"action": {
"default_icon": {
"16": "src/assets/icon-24.png",
"48": "src/assets/icon.png",
"128": "src/assets/icon-128.png"
}
},
"icons": {
"16": "src/assets/icon-24.png",
"48": "src/assets/icon.png",
"128": "src/assets/icon-128.png"
},
"side_panel": {
"default_path": "src/panel/sidepanel.html"
},
"background": {
"service_worker": "background/service-worker.js",
"type": "module"
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Alt+M",
"windows": "Alt+M",
"mac": "Alt+M",
"linux": "Alt+M"
}
}
},
"host_permissions": [
"https://*.openai.com/",
"https://*.chatgpt.com/",
"https://*.google.com/",
"https://*.googleusercontent.com/",
"https://*.open-meteo.com/",
"<all_urls>"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content-script.js"
],
"run_at": "document_start",
"all_frames": true
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}