Thread Reader

Read Twitter threads easily and effectively

Τι είναι το Thread Reader;

Το Thread Reader είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://devapt.com, και η κύρια λειτουργία του είναι "Read Twitter threads easily and effectively".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Thread Reader

Λήψη αρχείων επέκτασης Thread Reader σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        ━━━━━━━━━━»•» 𝗧𝗵𝗿𝗲𝗮𝗱 𝗿𝗲𝗮𝗱𝗲𝗿 «•«━━━━━━━━━━

Thread reader helps you to read Twitter threads like an article without distraction. 

To use thread reader extension, just open any tweet especially a thread and click the extension icon and that's it you can find the text in a scrollable box where you can read all the tweets of a thread easily.

You can copy all the text of the thread with one click and that can be saved on your favorite note taking app or publish it as an article on your blog.

𝗧𝗵𝗶𝗻𝗴𝘀 𝘁𝗼 𝗻𝗼𝘁𝗲:
1. Twitter threads of past 7 days can only be fetched.
2. The last five tweets/threads' text will be stored locally so you can fetch them quickly.
3. Only the images in the first tweet are displayed.

If you liked this extension you can support me by buying a coffee. This helps to keep updating and developing more such interesting tools. 

🥤 𝗕𝘂𝘆 𝗺𝗲 𝗮 𝗰𝗼𝗳𝗳𝗲𝗲 → https://www.buymeacoffee.com/basharath                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Thread Reader Thread Reader
ID hjepbdajiiflfinpefagdanephmgajnh
Επίσημο URL https://chromewebstore.google.com/detail/thread-reader/hjepbdajiiflfinpefagdanephmgajnh
Περιγραφή Read Twitter threads easily and effectively
Μέγεθος Αρχείου 15.25 KB
Αριθμός Εγκαταστάσεων 1,000
Τρέχουσα Έκδοση 0.0.1
Τελευταία Ενημέρωση 2022-05-10
Ημερομηνία Δημοσίευσης 2022-04-18
Αξιολόγηση 3.83/5 Συνολικά 6 Αξιολογήσεις
Προγραμματιστής https://devapt.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://devapt.com/
URL της Σελίδας Πολιτικής Απορρήτου https://basharath.notion.site/basharath/Privacy-policy-f883e35b01194f22874696119dac4f44
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Thread Reader",
    "version": "0.0.1",
    "description": "Read Twitter threads easily and effectively",
    "permissions": [
        "storage",
        "tabs"
    ],
    "action": {
        "default_icon": "images\/threader.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*",
                "https:\/\/*.twitter.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "images\/threader.png",
        "48": "images\/threader.png",
        "128": "images\/threader.png"
    },
    "short_name": "Threader"
}