NicoTS ~ニコニコ動画タイムシフト予約管理~

NicoTS ~ニコニコ動画タイムシフト予約管理~

ニコニコ動画のタイムシフト予約とAbemaTVの通知リストをまとめて管理できる拡張機能です。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "NicoTS ~ニコニコ動画タイムシフト予約管理~",
  "description": "ニコニコ動画のタイムシフト予約とAbemaTVの通知リストをまとめて管理できる拡張機能です。",
  "version": "1.3.5",
  "icons": {
    "16": "images/icon/icon_16.png",
    "32": "images/icon/icon_32.png",
    "48": "images/icon/icon_48.png",
    "128": "images/icon/icon_128.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://abema.tv/"
      ],
      "js": [
        "js/abemaweb.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": {
      "19": "images/icon/icon_19.png",
      "38": "images/icon/icon_38.png"
    },
    "default_title": "NicoTS",
    "default_popup": "popup.html"
  },
  "permissions": [
    "http://*.nicovideo.jp/*",
    "https://*.nicovideo.jp/*",
    "https://api.abema.io/v1/viewing/reservations/slots?*",
    "tabs",
    "storage",
    "webRequest",
    "webRequestBlocking"
  ]
}