Twitter Lazy Scroll

Automatically scrolls Twitter for you. Press spacebar to start and stop scrolling. You can adjust the speed on the side bar.

Τι είναι το Twitter Lazy Scroll;

Το Twitter Lazy Scroll είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Shang Liang, και η κύρια λειτουργία του είναι "Automatically scrolls Twitter for you. Press spacebar to start and stop scrolling. You can adjust the speed on the side bar.".

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

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

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

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

                        Automatically scrolls Twitter for you. Press spacebar to start and stop scrolling. You can adjust the speed on the sidebar.                    

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

Όνομα Twitter Lazy Scroll Twitter Lazy Scroll
ID fkbneanchjmfmnbkbkfejifnjpjgnpif
Επίσημο URL https://chromewebstore.google.com/detail/twitter-lazy-scroll/fkbneanchjmfmnbkbkfejifnjpjgnpif
Περιγραφή Automatically scrolls Twitter for you. Press spacebar to start and stop scrolling. You can adjust the speed on the side bar.
Μέγεθος Αρχείου 59.46 KB
Αριθμός Εγκαταστάσεων 429
Τρέχουσα Έκδοση 0.0.2
Τελευταία Ενημέρωση 2020-08-04
Ημερομηνία Δημοσίευσης 2020-08-04
Αξιολόγηση 3.67/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής Shang Liang
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitter Lazy Scroll",
    "version": "0.0.2",
    "manifest_version": 2,
    "description": "Automatically scrolls Twitter for you. Press spacebar to start and stop scrolling. You can adjust the speed on the side bar.",
    "icons": {
        "16": "icons\/icon16.png",
        "19": "icons\/icon19.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon128.png"
    },
    "permissions": [
        "https:\/\/twitter.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "injection.js",
        "hud.css"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}