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 là gì?

Twitter Lazy Scroll là một tiện ích mở rộng Chrome được phát triển bởi Shang Liang, và tính năng chính của nó là "Automatically scrolls Twitter for you. Press spacebar to start and stop scrolling. You can adjust the speed on the side bar.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

Tải xuống tệp CRX của tiện ích mở rộng Twitter Lazy Scroll

Tải xuống các tệp mở rộng Twitter Lazy Scroll dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Twitter Lazy Scroll Twitter Lazy Scroll
ID fkbneanchjmfmnbkbkfejifnjpjgnpif
URL Chính Thức https://chromewebstore.google.com/detail/twitter-lazy-scroll/fkbneanchjmfmnbkbkfejifnjpjgnpif
Mô tả Automatically scrolls Twitter for you. Press spacebar to start and stop scrolling. You can adjust the speed on the side bar.
Kích Thước Tệp 59.46 KB
Số Lần Cài Đặt 429
Phiên Bản Hiện Tại 0.0.2
Cập Nhật Lần Cuối 2020-08-04
Ngày Phát Hành 2020-08-04
Đánh Giá 3.67/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Shang Liang
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        ]
    }
}