Threadia
You can read the threads as blog posts and share the blog pages as threads in a click.
Τι είναι το Threadia;
Το Threadia είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον hallackerem, και η κύρια λειτουργία του είναι "You can read the threads as blog posts and share the blog pages as threads in a click.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Threadia
Λήψη αρχείων επέκτασης Threadia σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
You can read the threads as blog posts and share the blog pages as threads in a click. Threadia helps you by turning Twitter threads into a readable page. It also helps you share blog posts as a thread. The main features of the application are; * You can get a summary of the blog post you will share. * You can generate hashtags from your blog post to increase the interaction of the thread. Threadia protects you from getting lost between hard-to-read threads, increases your social visibility by sharing blogs as threads with hashtags.
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | fmecnpcdaiediolnohoiebdkphdlihio |
Επίσημο URL | https://chrome.google.com/webstore/detail/threadia/fmecnpcdaiediolnohoiebdkphdlihio |
Περιγραφή | You can read the threads as blog posts and share the blog pages as threads in a click. |
Μέγεθος Αρχείου | 14.4 KB |
Αριθμός Εγκαταστάσεων | 101 |
Τρέχουσα Έκδοση | 0.0.0.3 |
Τελευταία Ενημέρωση | 2020-07-26 |
Ημερομηνία Δημοσίευσης | 2020-07-03 |
Αξιολόγηση | 3.67/5 Συνολικά 3 Αξιολογήσεις |
Προγραμματιστής | hallackerem |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://threadia.com/ |
Διεύθυνση URL της Σελίδας Βοήθειας | https://threadia.com/ |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Threadia", "short_name": "Threadia", "version": "0.0.0.3", "version_name": "0.0.0.3", "description": "You can read the threads as blog posts and share the blog pages as threads in a click.", "browser_action": { "default_icon": "icons\/threadia-48.png" }, "content_scripts": [ { "matches": [ "https:\/\/threadia.com\/*", "https:\/\/twitter.com\/*" ], "js": [ "content.js" ], "all_frames": true } ], "icons": { "16": "icons\/threadia-16.png", "48": "icons\/threadia-48.png", "128": "icons\/threadia-128.png" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "homepage_url": "https:\/\/threadia.com\/", "permissions": [ "storage", "contextMenus", "tabs", "https:\/\/threadia.com\/*", "https:\/\/twitter.com\/*", "https:\/\/medium.com\/*" ] } |