Twitter Lazy Scroll

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

Co to jest Twitter Lazy Scroll?

Twitter Lazy Scroll to rozszerzenie Chrome opracowane przez Shang Liang, a jego główną funkcją jest „Automatically scrolls Twitter for you. Press spacebar to start and stop scrolling. You can adjust the speed on the side bar.”.

Zrzuty ekranu rozszerzenia

Pobierz plik CRX rozszerzenia Twitter Lazy Scroll

Pobierz pliki rozszerzeń Twitter Lazy Scroll w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Twitter Lazy Scroll Twitter Lazy Scroll
ID fkbneanchjmfmnbkbkfejifnjpjgnpif
Oficjalny URL https://chromewebstore.google.com/detail/twitter-lazy-scroll/fkbneanchjmfmnbkbkfejifnjpjgnpif
Opis Automatically scrolls Twitter for you. Press spacebar to start and stop scrolling. You can adjust the speed on the side bar.
Rozmiar pliku 59.46 KB
Liczba instalacji 429
Aktualna Wersja 0.0.2
Ostatnia Aktualizacja 2020-08-04
Data Publikacji 2020-08-04
Ocena 3.67/5 Łącznie 3 Oceny
Deweloper Shang Liang
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
        ]
    }
}