Examine source code of LearnTab

Inspect and view changes in LearnTab 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",
  "manifest_version": 2,
  "name": "LearnTab",
  "version": "1.5",
  "description": "Learn better by saving the things you want to remember using LearnTab.",
  "background": {
    "scripts": [
      "jquery.js",
      "script.js"
    ]
  },
  "chrome_url_overrides": {
    "newtab": "tabContent.html"
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "modal.css"
      ],
      "js": [
        "jquery.js",
        "inject.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "modal.html",
    "mark.png"
  ],
  "permissions": [
    "http://*/",
    "storage",
    "contextMenus",
    "tabs"
  ],
  "icons": {
    "16": "learnTabIcon.png",
    "128": "learnTabIcon.png"
  }
}