Sked Social Regram
Regram and schedule posts
Τι είναι το Sked Social Regram;
Το Sked Social Regram είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον http://skedsocial.com, και η κύρια λειτουργία του είναι "Regram and schedule posts".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Sked Social Regram
Λήψη αρχείων επέκτασης Sked Social Regram σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Sked Social Regram is an extension to the paid subscription service Sked Social, which allows you to schedule and upload images and video to Instagram to one or more accounts. You need to have a subscription to Sked Social to use this extension. Sign up at https://app.skedsocial.com/signup. Sked Social's extension lets customers 'regram' or share photos from other users. It installs an extension to your Chrome. When you are browsing Instagram, you can click on the Sked Social icon in your browser to share the image currently on the screen. You'll be able to select the right account, and provide a caption, comment and time for the post. Please note that this extension is in beta format - please provide feedback with any questions or issues to us at [email protected]!
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | ffgpobfpdejceccaekjgoohkbllpohcp |
Επίσημο URL | https://chrome.google.com/webstore/detail/sked-social-regram/ffgpobfpdejceccaekjgoohkbllpohcp |
Περιγραφή | Regram and schedule posts |
Μέγεθος Αρχείου | 486 KB |
Αριθμός Εγκαταστάσεων | 2,000 |
Τρέχουσα Έκδοση | 3.0.2 |
Τελευταία Ενημέρωση | 2019-04-19 |
Ημερομηνία Δημοσίευσης | 2019-04-19 |
Αξιολόγηση | 3.00/5 Συνολικά 5 Αξιολογήσεις |
Προγραμματιστής | http://skedsocial.com |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://skedsocial.com |
Διεύθυνση URL της Σελίδας Βοήθειας | https://support.skedsocial.com/ |
URL της Σελίδας Πολιτικής Απορρήτου | https://skedsocial.com/privacy-policy |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Sked Social Regram", "description": "Regram and schedule posts", "version": "3.0.2", "browser_action": { "default_icon": "images\/logo-disabled.png", "default_popup": "components\/post.html" }, "background": { "scripts": [ "dist\/background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/www.instagram.com\/*" ], "js": [ "dist\/contentscript.js" ] } ], "icons": { "128": "images\/logo_128.png", "64": "images\/logo.png" }, "permissions": [ "activeTab", "tabs", "notifications", "https:\/\/app.skedsocial.com\/" ], "options_page": "components\/post.html", "web_accessible_resources": [ "\/*" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |