Loop Timer

Loop Timer

一定時間ごとに通知します。 拡張機能アイコンを右クリックし、オプションから秒単位で時間を設定できます。 Webでテスト問題等を解くときに、1問にかける時間の目安としてお使いいただけます。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Loop Timer",
  "version": "0.1",
  "browser_action": {
    "default_icon": {
      "48": "white_icon_48.png"
    }
  },
  "background": {
    "scripts": [
      "backgroundScript.js"
    ]
  },
  "icons": {
    "48": "white_icon_48.png"
  },
  "options_ui": {
    "page": "options.html"
  },
  "permissions": [
    "storage",
    "notifications"
  ]
}