Annotations Restored for YouTube™

Annotations Restored for YouTube™

Bring annotation support back to YouTube™!

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_name__",
  "short_name": "__MSG_shortName__",
  "version": "1.2.1",
  "description": "__MSG_description__",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAi7neU9iuW9mfpSo5zsaYLPuYNG0PkaKBCmJHVP+++wawDEzQRrcNihxglnGc+kn0KHmp6D53ibr1EIHMcLlSNvYgsZaylY8sI78cXSvlcUY9VfUtoSTaRsHQ4SlP6tS6GUYutc38vZB7kZx9p1CX2gH7IsDe1rqs2vwtFy+WiGf3bWXfTGuScBTeUguOMEXxY4bRiQRtiFUprSQyTR4mHSe8CFOX+zUqpnSSe2IgWLsATiae1fBJHTaOjB1V/oxgKfm5jhBBPXXtmoHFOU71tm1MpPM02a1HmNfIf6Mwb7sM0djjD2Zy0gtM6jdFpObVv2Uq0YD9l+k7vaH5x1hCDQIDAQAB",
  "default_locale": "en",
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "64": "icons/icon64.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "storage"
  ],
  "optional_permissions": [
    "downloads"
  ],
  "action": {
    "default_title": "Annotations Restored",
    "default_popup": "popup/index.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.youtube.com/*"
      ],
      "js": [
        "js/annotationlib/dist/AnnotationParser.js",
        "js/annotationlib/dist/AnnotationRenderer.js",
        "js/content.js"
      ],
      "css": [
        "js/annotationlib/dist/AnnotationRenderer.css"
      ]
    }
  ],
  "background": {
    "service_worker": "js/background.js"
  }
}