Playlists history

Playlists history

This extension generates change stories for YouTube playlists.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAm/1t/qjROaU14gScd3u+IfETRiL6mztj9mLLtV3S8PDSvQT4hY45CNmmhSB+zDAt3FuJHNQzVAg85GPrnUL/ORYH+hltzdBH3uki7/+cD3HeUNohUFSOG2CqVZjeTrfQJyD6NZ4y5GBrWRwJTp2WyU/Ugb7rti7HpqvEZbbeJbyGj+3EP4yon5O5el9eCr7A8WqfxFhedsbXgZnyb9k4FGjteDtOgS7B+ShGrJGkYTswll78JWtLBPq+PuWkeoa5lUnPdqQF95xwb15Vkmu21bhN3j3gkWjgm1+HcjGUo/fRA4V/0gLOPOO7Hqfc6vwlq0FXJ9luSs/BCA9cpZyhJQIDAQAB",
  "manifest_version": 2,
  "name": "Playlists history",
  "description": "This extension generates change stories for YouTube playlists.",
  "version": "1.1.14",
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "identity",
    "storage",
    "https://*.ytimg.com/vi/*",
    "https://www.googleapis.com/drive/v3/files/*",
    "https://youtube.googleapis.com/youtube/v3/*",
    "https://content.googleapis.com/drive/v3/files/*",
    "https://content-people.googleapis.com/v1/people/me"
  ],
  "oauth2": {
    "client_id": "788680776425-97f3uf2gvmcrc763e1pg17ntn90e2gb6.apps.googleusercontent.com",
    "scopes": []
  },
  "icons": {
    "128": "img/icon-128.png"
  },
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "*://www.youtube.com/*"
      ],
      "js": [
        "content/main-content.js"
      ],
      "css": [
        "content/content.css"
      ]
    }
  ],
  "background": {
    "scripts": [
      "bundles/background-bundle.js"
    ]
  },
  "options_ui": {
    "page": "bundles/spa/index.html#/settings",
    "open_in_tab": true
  },
  "browser_action": {
    "default_popup": "popup/popup.html"
  },
  "web_accessible_resources": [
    "*"
  ]
}