Examine source code of FlipTube

Inspect and view changes in FlipTube 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": "FlipTube",
  "description": "Let the user flip the YouTube Content.",
  "version": "1.0.1",
  "permissions": [
    "activeTab"
  ],
  "icons": {
    "16": "img/reflektieren16.png",
    "32": "img/reflektieren32.png",
    "48": "img/reflektieren48.png",
    "128": "img/reflektieren128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://www.youtube.com/*",
        "https://www.youtube.com/*"
      ],
      "css": [
        "css/styles.css"
      ],
      "js": [
        "js/mirror.js"
      ],
      "run_at": "document_end"
    }
  ]
}