SelfScroll

This extension allow to automatically scroll the page. Suitable for monitors and kiosks.

SelfScroll là gì?

SelfScroll là một tiện ích mở rộng Chrome được phát triển bởi https://zerobug.it, và tính năng chính của nó là "This extension allow to automatically scroll the page. Suitable for monitors and kiosks.".

Ả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 SelfScroll

Tải xuống các tệp mở rộng SelfScroll 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

                        This extension allow to automatically scroll the page. Suitable for monitors and kiosks.

Buy me a coffe :D

Litecoin: MC8PtUhSL2iJCx5GWrisPZPpgiFE56ejyc
Paypal: https://www.paypal.me/ZeroBug                    

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

Tên SelfScroll SelfScroll
ID lofkbkbhpmeihoaogggfbhmjdekjihlf
URL Chính Thức https://chromewebstore.google.com/detail/selfscroll/lofkbkbhpmeihoaogggfbhmjdekjihlf
Mô tả This extension allow to automatically scroll the page. Suitable for monitors and kiosks.
Kích Thước Tệp 132 KB
Số Lần Cài Đặt 1,476
Phiên Bản Hiện Tại 1.4
Cập Nhật Lần Cuối 2018-11-13
Ngày Phát Hành 2018-11-13
Đánh Giá 4.40/5 Tổng số 5 Đánh Giá
Nhà Phát Triển https://zerobug.it
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://zerobug.it/
Ngôn Ngữ Được Hỗ Trợ en,it
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SelfScroll",
    "version": "1.4",
    "description": "This extension allow to automatically scroll the page. Suitable for monitors and kiosks.",
    "default_locale": "en",
    "icons": {
        "16": ".\/icons\/selfscroll_16.png",
        "48": ".\/icons\/selfscroll_48.png",
        "128": ".\/icons\/selfscroll_128.png"
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "selfscroll_script.js"
            ]
        }
    ],
    "options_ui": {
        "page": "selfscroll_options.html",
        "chrome_style": true
    },
    "background": {
        "scripts": [
            "selfscroll_background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": ".\/icons\/selfscroll.png",
        "default_title": "SelfScroll"
    },
    "manifest_version": 2
}