Full Screen Viewer for Instagram
Creates a picture frame from Instagram Images v1.5
Τι είναι το Full Screen Viewer for Instagram;
Το Full Screen Viewer for Instagram είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον http://jacques-applebaum.com, και η κύρια λειτουργία του είναι "Creates a picture frame from Instagram Images v1.5".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Full Screen Viewer for Instagram
Λήψη αρχείων επέκτασης Full Screen Viewer for Instagram σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Creates a photo magazine from Instagram photos. This extension works on instagram.com. When you navigate there it will create a picture frame from your Instagram feed. Press the "Slideshow" button to enter picture frame mode. Double click anywhere in the frame to pause the stream. Click "Add Images" to add images to the picture frame. There are themes to choose from and other settings when you click on the extension icon. ** This is not affiliated with Instagram. I made this myself. ** Feel free to send me an email with feedback. Jacques dot Applebaum @ gmail
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | loaoibajbaeflfkkbclalljffkhnffgj |
Επίσημο URL | https://chrome.google.com/webstore/detail/full-screen-viewer-for-in/loaoibajbaeflfkkbclalljffkhnffgj |
Περιγραφή | Creates a picture frame from Instagram Images v1.5 |
Μέγεθος Αρχείου | 64.33 KB |
Αριθμός Εγκαταστάσεων | 1,000 |
Τρέχουσα Έκδοση | 1.5 |
Τελευταία Ενημέρωση | 2021-11-17 |
Ημερομηνία Δημοσίευσης | 2020-06-23 |
Αξιολόγηση | 3.00/5 Συνολικά 4 Αξιολογήσεις |
Προγραμματιστής | http://jacques-applebaum.com |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://jacques-applebaum.com |
Διεύθυνση URL της Σελίδας Βοήθειας | https://jacques-applebaum.com/ja_art/chrome_ext |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Full Screen Viewer for Instagram", "version": "1.5", "description": "Creates a picture frame from Instagram Images v1.5", "icons": { "16": "icon.png", "64": "woman_hat_64_icon.png", "128": "woman_hat_128px_icon.png" }, "incognito": "spanning", "web_accessible_resources": [ "d2.wasm" ], "content_scripts": [ { "matches": [ "https:\/\/www.instagram.com\/*" ], "js": [ "jquery-3.3.1.min.js", "d2.js", "content.js" ], "css": [ "styles.css" ] } ], "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "storage" ], "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'" } |