Examine source code of Better URL Reminder by PWS

Inspect and view changes in Better URL Reminder by PWS 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
{
  "background": {
    "persistent": true,
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html",
    "default_title": "Click to set reminder for this tab (view it later)",
    "icons": [
      "icon.png"
    ]
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+Shift+R"
      }
    }
  },
  "content_scripts": [
    {
      "css": [
        "style.css"
      ],
      "js": [
        "jquery.min.js",
        "custom.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "description": "A simple productive tool that reminds user to open the URL later (extremely useful, I swear). Update on 2016-09-05",
  "icons": {
    "48": "icon.png"
  },
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAokLQkJI76gcYLv6qmRrs/1mZa+SWAhb8sAAEQGwpTtMxRGkRN6jbW9US6gddXa6R4FZDYJJVYEruoNHiGRulj82E376qQsfwqdRCd3JCNCT7LbBJGcWvy9qmv2V3BC+EpnevQoNJAIiX9YzcYgpyJhVKkckeK9pNlVDhiheMMMklQ5D6pwaXis8hx3y1HUFBXasO7rIzanPuJr5SqdVJtpNLPetnzL2mCJlwbthPPZ9DpiQvJ5md3EnYyoacwRfvea+bPHaDOZHDiPPOss8ANqqiUddnV344jXT4FsB2mM0WRihJkEXRXl869TRWbJ9DgDygAt2+qtcBpCRlKqnyywIDAQAB",
  "manifest_version": 2,
  "name": "Better URL Reminder by PWS",
  "permissions": [
    "contextMenus",
    "storage",
    "tabs",
    "http://*/",
    "https://*/",
    "file:///*/*",
    "http://*/*",
    "activeTab",
    "notifications"
  ],
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.1.25",
  "web_accessible_resources": [
    "icon-notification.png"
  ]
}