Examine source code of URL Bin

Inspect and view changes in URL Bin 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": "URL Bin",
  "description": "Quickly and easily save URLs without cluttering your bookmarks bar.",
  "version": "1.3.1",
  "offline_enabled": true,
  "browser_action": {
    "default_popup": "index.html"
  },
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "largeIcon.png"
  },
  "background": {
    "scripts": [
      "JS/eventPage.js"
    ],
    "persistent": false
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "permissions": [
    "activeTab",
    "topSites",
    "storage",
    "contextMenus",
    "background"
  ]
}