Slides Timer

Slides Timer

Create timers using placeholders. ie <<0:00+>>, <<5:00->>, <<time>>, <<date>>, <<shortdate>>, <<longdate>>

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "1.27",
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "https://docs.google.com/presentation*"
      ],
      "js": [
        "contentscript.js"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "19": "images/icons/19.png",
      "38": "images/icons/38.png"
    },
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "images/icons/16.png",
    "19": "images/icons/19.png",
    "38": "images/icons/38.png",
    "64": "images/icons/64.png",
    "128": "images/icons/128.png"
  },
  "offline_enabled": true
}