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]
Vad är Fix Facebook Video Player?
Fix Facebook Video Player är en Chrome-tillägg utvecklad av YG_CODES, och dess huvudfunktion är "Enable Pause/Play on facebook videos by clicking on the screen, instead of the annoying popup. report bugs to [email protected]".
Tilläggsskärmbilder
Ladda ner Fix Facebook Video Player-förlängningens CRX-fil
Ladda ner Fix Facebook Video Player-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
This extension was created just for passing time and due to frustration of Facebook videos behavior when clicking on the video to pause it. with this extension, the video player behaves as expected, pausing and resuming playback on click. report bugs to [email protected]
Grundläggande Information om Tillägg
Namn | ![]() |
ID | cphmifpmabdojeoeoahfiileopgekdlb |
Officiell webbadress | https://chrome.google.com/webstore/detail/fix-facebook-video-player/cphmifpmabdojeoeoahfiileopgekdlb |
Beskrivning | Enable Pause/Play on facebook videos by clicking on the screen, instead of the annoying popup. report bugs to [email protected] |
Filstorlek | 13.35 KB |
Antal Installationer | 79 |
Aktuell Version | 0.0.1 |
Senast Uppdaterad | 2019-10-01 |
Publiceringsdatum | 2019-10-01 |
Betyg | 2.50/5 Totalt 2 Betyg |
Utvecklare | YG_CODES |
Betalningssätt | free |
Stödda Språk | en |
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" ] } |