PLANOLY Uploader
You can use this extension to upload content to your Planoly's Pin Planner and publish to Pinterest.
Τι είναι το PLANOLY Uploader;
Το PLANOLY Uploader είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://planoly.com, και η κύρια λειτουργία του είναι "You can use this extension to upload content to your Planoly's Pin Planner and publish to Pinterest.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης PLANOLY Uploader
Λήψη αρχείων επέκτασης PLANOLY Uploader σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Planoly Uploader What is Planoly? Planoly is a visual planning tool that allows users to upload, plan, and curate content to publish on Instagram, Facebook, and Pinterest. You can use this extension to upload your content to your Planoly’s Pin Planner and publish to Pinterest. How can this extension help you: Super fast way to quickly schedule content to your Pinterest account. Click on the “Plan it” icon on any image as you browse and upload to Planoly’s Pin Planner to plan immediately, or simply schedule for a future date. Extension will pick up the web page title, and populate the Pin Title field, use any image description to populate the Pin Description field. You can select which board you want to post to, as well as the date and time. If you do not wish to schedule, simply hit the “save” button, and the image will be saved to your library dashboard in Planoly’s Pin Planner. Note: To use this extension, you must have a Planoly account and log into it, as well as a working Pinterest account authenticated with Planoly. www.planoly.com
Βασικές Πληροφορίες Επέκτασης
Όνομα | PLANOLY Uploader |
ID | ebpcimigfdcgmpaiboiipfkmceejkekp |
Επίσημο URL | https://chromewebstore.google.com/detail/planoly-uploader/ebpcimigfdcgmpaiboiipfkmceejkekp |
Περιγραφή | You can use this extension to upload content to your Planoly's Pin Planner and publish to Pinterest. |
Μέγεθος Αρχείου | 19.01 KB |
Αριθμός Εγκαταστάσεων | 4,578 |
Τρέχουσα Έκδοση | 1.2 |
Τελευταία Ενημέρωση | 2019-11-04 |
Ημερομηνία Δημοσίευσης | 2019-10-31 |
Αξιολόγηση | 3.67/5 Συνολικά 3 Αξιολογήσεις |
Προγραμματιστής | https://planoly.com |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://www.planoly.com |
Διεύθυνση URL της Σελίδας Βοήθειας | https://www.planoly.com/help |
URL της Σελίδας Πολιτικής Απορρήτου | https://planoly.com/privacy-policy |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "PLANOLY Uploader", "description": "You can use this extension to upload content to your Planoly's Pin Planner and publish to Pinterest.", "version": "1.2", "browser_action": { "default_icon": { "19": "icons\/icon_toolbar.png", "38": "icons\/[email protected]" }, "default_title": "Planoly Multi-Image Uploader" }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png", "256": "icons\/icon256.png" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "permissions": [ "activeTab", "https:\/\/www.planoly.com\/", "https:\/\/pinterest.planoly.com\/" ], "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "planoly\/planoly.js" ], "run_at": "document_start" } ] } |