Crunchyroll Timestamp Helper

Crunchyroll Timestamp Helper

This extension will allow you to click on timestamps from chat and move to the specified time in the video

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Crunchyroll Timestamp Helper",
  "description": "This extension will allow you to click on timestamps from chat and move to the specified time in the video",
  "version": "1.0.3",
  "author": "Mathew Anjos",
  "content_scripts": [
    {
      "matches": [
        "https://www.crunchyroll.com/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "images/icon.png"
  },
  "icons": {
    "16": "images/icon.png",
    "48": "images/icon.png",
    "128": "images/icon.png"
  },
  "permissions": [
    "activeTab",
    "*://*.crunchyroll.com/*"
  ]
}