TikTok Controls

TikTok Controls

Adds the controls and keyboard shortcuts to 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": "TikTok Controls",
  "description": "Adds the controls and keyboard shortcuts to the video.",
  "author": "Andronachi Marian",
  "version": "0.0.9",
  "icons": {
    "16": "icons/x16.png",
    "48": "icons/x48.png",
    "128": "icons/x128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "icons/x16.png",
    "default_popup": "browser/browser.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.tiktok.com/*"
      ],
      "js": [
        "content/start.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://www.tiktok.com/*"
      ],
      "css": [
        "content/content.css"
      ],
      "js": [
        "content/content.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    "content/dark.css"
  ],
  "permissions": [
    "storage",
    "cookies",
    "https://www.tiktok.com/"
  ]
}