Examine source code of Your Time: Anti-Clickbait

Inspect and view changes in Your Time: Anti-Clickbait source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "Your Time: Anti-Clickbait",
  "version": "1.1resigned1",
  "applications": {
    "gecko": {
      "id": "yourtime@oxygenrain.com",
      "strict_min_version": "42.0"
    }
  },
  "description": " A web extension that shows important, community-submitted timemarks on YouTube videos.",
  "homepage_url": "https://gitlab.com/eonmilu/your-time",
  "icons": {
    "48": "resources/logo.svg",
    "96": "resources/logo.svg"
  },
  "permissions": [
    "*://www.youtube.com/watch?*",
    "https://oxygenrain.com/yourtime/*",
    "activeTab"
  ],
  "web_accessible_resources": [
    "scripts/content.js",
    "resources/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://www.youtube.com/*"
      ],
      "run_at": "document_idle",
      "js": [
        "scripts/scriptloader.js"
      ]
    }
  ],
  "browser_action": {
    "browser_style": false,
    "default_icon": {
      "16": "resources/logo.svg",
      "32": "img/logo-32x32.png"
    },
    "default_title": "Your Time",
    "default_popup": "popup/popup.html"
  }
}