Examine source code of Time Stamper

Inspect and view changes in Time Stamper 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
{
  "name": "Time Stamper",
  "short_name": "Time Stamper",
  "version": "1.0.1",
  "manifest_version": 2,
  "description": "Quick and easy adding of a timestamp to an input field",
  "icons": {
    "16": "images/ts-icon_16.png",
    "128": "images/ts-icon_128_v2.png"
  },
  "permissions": [
    "<all_urls>",
    "contextMenus",
    "storage",
    "notifications"
  ],
  "background": {
    "page": "background.html"
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "all_frames": true
    }
  ],
  "browser_action": {
    "default_icon": {
      "19": "images/ts-icon_19.png"
    },
    "default_title": "Time Stamper Options"
  },
  "web_accessible_resources": [],
  "commands": {
    "insert-timestamp": {
      "suggested_key": {
        "default": "Ctrl+Shift+Y",
        "mac": "Command+Shift+Y"
      },
      "description": "Insert timestamp"
    }
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}