StoryChief - Twitter Thread Designer
Convert Twitter Threads into beautiful slideshows. A new way to feed your Instagram and Linkedin accounts.
Τι είναι το StoryChief - Twitter Thread Designer;
Το StoryChief - Twitter Thread Designer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://storychief.io, και η κύρια λειτουργία του είναι "Convert Twitter Threads into beautiful slideshows. A new way to feed your Instagram and Linkedin accounts.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης StoryChief - Twitter Thread Designer
Λήψη αρχείων επέκτασης StoryChief - Twitter Thread Designer σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
This extension adds a new button to Twitter threads. This button opens a thread slideshow designer where you can export to pdf and images. How to get started: 1. Install this extension 2. Proceed to a Twitter thread 3. Click Thread designer 4. Start designing your slideshow 🎉
Βασικές Πληροφορίες Επέκτασης
Όνομα | StoryChief - Twitter Thread Designer |
ID | ngndiifcikgmoddfknfcbpjbemffdpdo |
Επίσημο URL | https://chromewebstore.google.com/detail/storychief-twitter-thread/ngndiifcikgmoddfknfcbpjbemffdpdo |
Περιγραφή | Convert Twitter Threads into beautiful slideshows. A new way to feed your Instagram and Linkedin accounts. |
Μέγεθος Αρχείου | 74.02 KB |
Αριθμός Εγκαταστάσεων | 387 |
Τρέχουσα Έκδοση | 0.5 |
Τελευταία Ενημέρωση | 2022-12-18 |
Ημερομηνία Δημοσίευσης | 2022-03-25 |
Αξιολόγηση | 5.00/5 Συνολικά 1 Αξιολογήσεις |
Προγραμματιστής | https://storychief.io |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://storychief.io |
Διεύθυνση URL της Σελίδας Βοήθειας | https://help.storychief.io |
URL της Σελίδας Πολιτικής Απορρήτου | https://storychief.io/privacy |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Convert Twitter Threads into beautiful slideshows. A new way to feed your Instagram and Linkedin accounts.", "version": "0.5", "manifest_version": 3, "permissions": [], "name": "StoryChief - Twitter Thread Designer", "background": { "service_worker": "background.bundle.js" }, "action": { "default_popup": "popup.html", "default_icon": "icon-34.png" }, "icons": { "128": "icon-128.png" }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*", "https:\/\/*.twitter.com\/*" ], "js": [ "contentScript.bundle.js" ], "css": [ "content.styles.css" ] } ], "devtools_page": "devtools.html", "web_accessible_resources": [ { "resources": [ "content.styles.css", "icon-128.png", "icon-34.png", "visual.jpg" ], "matches": [] } ] } |