Inspect and view changes in I-Know 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "I-Know",
"short_name": "I-Know",
"offline_enabled": true,
"version": "6.0.7",
"manifest_version": 2,
"description": "Never miss an assignment.",
"icons": {
"128": "icon128.png"
},
"permissions": [
"notifications",
"alarms",
"activeTab"
],
"optional_permissions": [
"http://*/",
"https://*/"
],
"browser_action": {
"default_title": "I-Know, never miss an assignment",
"default_popup": "popup.html",
"default_icon": {
"128": "icon128.png"
}
},
"background": {
"scripts": [
"js/background.js"
],
"persistent": false
}
}