Time BOSS

Time BOSS

Balance the time you spend on YouTube. Never fall prey to distractions again.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Time BOSS",
  "version": "0.1.5.70",
  "description": "Balance the time you spend on YouTube. Never fall prey to distractions again.",
  "icons": {
    "16": "icons/logo16.png",
    "48": "icons/logo48.png",
    "128": "icons/logo128.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "icons/logo16.png",
      "24": "icons/logo24.png",
      "32": "icons/logo32.png"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.youtube.com/*"
      ],
      "run_at": "document_start",
      "js": [
        "content/YouTube/beforeLoad.js"
      ]
    },
    {
      "matches": [
        "*://www.youtube.com/*"
      ],
      "run_at": "document_idle",
      "js": [
        "content/YouTube/afterLoad.js"
      ]
    },
    {
      "matches": [
        "*://beta.timeboss.app/*"
      ],
      "run_at": "document_idle",
      "js": [
        "content/WebApp/afterLoad.js"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    "images/svg/*.svg",
    "images/png/*.png"
  ]
}