Tweedock

Better Twitter Bookmarks

Τι είναι το Tweedock;

Το Tweedock είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://tweedock.com, και η κύρια λειτουργία του είναι "Better Twitter Bookmarks".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        ATTENTION!!!

As of Feb 2024, due to several changes to Twitter's API, many services that used to rely on it are broken, including (currently) Tweedock.

It may be possible to fix Tweedock, but we are waiting for things to settle, as over the last 6 months, whenever we'd fix something it would be broken again in a few days.

We will provide more updates here. 
Thanks for your patience.


# Changelog
* v2.2: tweets failing data fetch are now shown as such. Hitting refresh may help restoring data
* v2.1: fixed button to show again after the latest changes to Twitter
* NEW in v2.0: you can now publish and share your albums!
* v1.2: several improvements to the tab page
* v1.0: initial release

# Description
Welcome to Tweedock, the ultimate tool for bookmarking tweets on Twitter!

Are you tired of losing track of the tweets you want to save for later? Our extension makes it easy to bookmark and organize your favorite tweets, so you never have to scroll endlessly through your feed again.

Key features:

• Quick and easy to use: Our extension adds a bookmark icon to each tweet, so you can save it with just one click without leaving the Twitter platform.
• Albums: Our extension allows you to create albums to organize and save your favorite tweets.
• Media downloads: You can download media such as videos from tweets directly to your device with just one click.
• Fast search: Our extension includes a powerful search feature, so you can quickly find any bookmarked tweet using keywords, tags, or other filters.
• Free to use: The application is free to download and use, with no hidden fees or subscriptions required.

Our extension is perfect for anyone who wants to save and organize tweets for later reading, research, or inspiration. It's great for students, researchers, journalists, social media managers, and anyone else who spends time on Twitter.

So why wait? Try our extension today and take your Twitter bookmarking game to the next level!                    

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

Όνομα Tweedock Tweedock
ID nkdicobabedjmonjeejijjekbgakknea
Επίσημο URL https://chromewebstore.google.com/detail/tweedock/nkdicobabedjmonjeejijjekbgakknea
Περιγραφή Better Twitter Bookmarks
Μέγεθος Αρχείου 501 KB
Αριθμός Εγκαταστάσεων 145
Τρέχουσα Έκδοση 2.2
Τελευταία Ενημέρωση 2024-02-05
Ημερομηνία Δημοσίευσης 2023-04-17
Αξιολόγηση 4.00/5 Συνολικά 5 Αξιολογήσεις
Προγραμματιστής https://tweedock.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://tweedock.com
Διεύθυνση URL της Σελίδας Βοήθειας https://tweedock.com/#howto
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Tweedock",
    "version": "2.2",
    "description": "Better Twitter Bookmarks",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "permissions": [
        "storage",
        "unlimitedStorage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitter.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "css\/tailwind.min.css"
            ],
            "run_at": "document_idle"
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "browser_style": true,
        "default_icon": "icons\/icon.png"
    },
    "host_permissions": [
        "https:\/\/cdn.syndication.twimg.com\/"
    ]
}