Fix Facebook Video Player

Fix Facebook Video Player

Enable Pause/Play on facebook videos by clicking on the screen, instead of the annoying popup. report bugs to [email protected]

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Fix Facebook Video Player",
  "version": "0.0.1",
  "manifest_version": 2,
  "description": "Enable Pause/Play on facebook videos by clicking on the screen, instead of the annoying popup. report bugs to [email protected]",
  "icons": {
    "16": "Yg_fb_16.png",
    "48": "Yg_fb_48.png",
    "128": "Yg_fb_128.png"
  },
  "homepage_url": "http://ygcodes.com",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_title": "Fix Facebook Video Player"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.facebook.com/*"
      ],
      "js": [
        "fix_fb_video.js"
      ]
    }
  ],
  "permissions": [
    "*://*.facebook.com/*",
    "tabs"
  ]
}