Presentation Pacemaker

Presentation Pacemaker

Shows a presentation pace-keeping timer on the Qiita slides

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_title__",
  "description": "__MSG_description__",
  "version": "1.3",
  "permissions": [
    "declarativeContent"
  ],
  "default_locale": "en",
  "icons": {
    "128": "images/cat2x.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "page_action": {
    "default_title": "__MSG_title__",
    "default_icon": "images/cat.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://qiita.com/*",
        "*://docs.google.com/presentation/*"
      ],
      "js": [
        "timer.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "images/*"
  ],
  "manifest_version": 2
}