TimeSkip

TimeSkip

Skips you to the title card of an episode on CrunchyRoll. Currently works with One Piece and Black Clover.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "TimeSkip",
  "version": "1.3.0",
  "description": "Skips you to the title card of an episode on CrunchyRoll. Currently works with One Piece and Black Clover.",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "page_action": {
    "default_popup": "popup.htm",
    "default_icon": {}
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.crunchyroll.com/*"
      ],
      "run_at": "document_end",
      "all_frames": true,
      "js": [
        "playback.js",
        "contentScript.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "declarativeContent",
    "tabs"
  ],
  "manifest_version": 2,
  "icons": {
    "128": "TimeSkip 128x128.png"
  }
}