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


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Time Stamper",
  "short_name": "Time Stamper",
  "version": "2.0.0",
  "manifest_version": 3,
  "description": "Quick and easy adding of a timestamp to an input field",
  "icons": {
    "16": "images/ts-icon_16.png",
    "19": "images/ts-icon_19.png",
    "128": "images/ts-icon_128_v2.png"
  },
  "permissions": [
    "contextMenus",
    "storage",
    "notifications"
  ],
  "background": {
    "service_worker": "ts_context_menu.js"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "all_frames": true
    }
  ],
  "action": {
    "default_icon": {
      "19": "images/ts-icon_19.png"
    },
    "default_title": "Time Stamper Options"
  },
  "commands": {
    "insert-timestamp": {
      "suggested_key": {
        "default": "Ctrl+Shift+Y",
        "mac": "Command+Shift+Y"
      },
      "description": "Insert timestamp"
    }
  }
}