Time Stamper

Time Stamper

Quick and easy adding of a timestamp to an input field

Merlin
Additional files are visible only to premium users

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"
}