More photos and videos
This extension adds a 'more photos' and 'more videos' button to the facebook profiles for easy discovery of photos about the person.
Τι είναι το More photos and videos;
Το More photos and videos είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον dlux.hu, και η κύρια λειτουργία του είναι "This extension adds a 'more photos' and 'more videos' button to the facebook profiles for easy discovery of photos about the person.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης More photos and videos
Λήψη αρχείων επέκτασης More photos and videos σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
This extension adds 3 new features to facebook: 1, "More photos" This lets you discover more photos of any facebook user. It shows more photos of the user that they were tagged in. It works even if "Photos of the user" link is not visible, and even if it works, it usually finds more photos. 2, "More videos" It lets you discover more videos of any facebook user. Works similarly than "More photos". 3, Copy canonical profile id It copies the canonical profile link (with the profile_id) to the clipboard. This lets you save the profile id of a person even if they change their name or profile url.
Βασικές Πληροφορίες Επέκτασης
Όνομα | More photos and videos |
ID | pbioadhkealfcknifmfoojhmmocellem |
Επίσημο URL | https://chromewebstore.google.com/detail/more-photos-and-videos/pbioadhkealfcknifmfoojhmmocellem |
Περιγραφή | This extension adds a 'more photos' and 'more videos' button to the facebook profiles for easy discovery of photos about the person. |
Μέγεθος Αρχείου | 22.98 KB |
Αριθμός Εγκαταστάσεων | 395 |
Τρέχουσα Έκδοση | 0.2 |
Τελευταία Ενημέρωση | 2018-07-28 |
Ημερομηνία Δημοσίευσης | 2018-07-27 |
Αξιολόγηση | 1.00/5 Συνολικά 1 Αξιολογήσεις |
Προγραμματιστής | dlux.hu |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "More photos and videos", "version": "0.2", "description": "This extension adds a 'more photos' and 'more videos' button to the facebook profiles for easy discovery of photos about the person.", "page_action": { "default_icon": "icon-64x64.png", "default_popup": "facebook-action.html", "default_title": "More Photos, Videos and Id" }, "content_scripts": [ { "exclude_globs": [ "http:\/\/*.facebook.com\/ajax\/*", "https:\/\/*.facebook.com\/ajax\/*", "http:\/\/www.facebook.com\/ai.php*", "https:\/\/www.facebook.com\/ai.php*", "https:\/\/www.facebook.com\/xti.php*", "http:\/\/www.facebook.com\/xti.php*", "http:\/\/developers.facebook.com\/*", "https:\/\/developers.facebook.com\/*" ], "include_globs": [ "http:\/\/*.facebook.com\/*", "https:\/\/*.facebook.com\/*" ], "js": [ "content.js" ], "matches": [ "http:\/\/*.facebook.com\/*", "https:\/\/*.facebook.com\/*" ], "run_at": "document_start" } ], "web_accessible_resources": [ "copy-icon.png", "embed-name.js" ] } |