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]
Τι είναι το Fix Facebook Video Player;
Το Fix Facebook Video Player είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον YG_CODES, και η κύρια λειτουργία του είναι "Enable Pause/Play on facebook videos by clicking on the screen, instead of the annoying popup. report bugs to [email protected]".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Fix Facebook Video Player
Λήψη αρχείων επέκτασης Fix Facebook Video Player σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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]
Βασικές Πληροφορίες Επέκτασης
Όνομα | ![]() |
ID | cphmifpmabdojeoeoahfiileopgekdlb |
Επίσημο URL | https://chrome.google.com/webstore/detail/fix-facebook-video-player/cphmifpmabdojeoeoahfiileopgekdlb |
Περιγραφή | Enable Pause/Play on facebook videos by clicking on the screen, instead of the annoying popup. report bugs to [email protected] |
Μέγεθος Αρχείου | 13.35 KB |
Αριθμός Εγκαταστάσεων | 79 |
Τρέχουσα Έκδοση | 0.0.1 |
Τελευταία Ενημέρωση | 2019-10-01 |
Ημερομηνία Δημοσίευσης | 2019-10-01 |
Αξιολόγηση | 2.50/5 Συνολικά 2 Αξιολογήσεις |
Προγραμματιστής | YG_CODES |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | 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" ] } |