Pull down reloader

This extension adds the possibility to reload any page by pulling the page down on any touch device.

Pull down reloader là gì?

Pull down reloader là một tiện ích mở rộng Chrome được phát triển bởi Magnus Svensson, và tính năng chính của nó là "This extension adds the possibility to reload any page by pulling the page down on any touch device.".

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

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Pull down reloader

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

                        Pull down reloader was created to increase touch gesture compatabilty in chrome for touch devices. This extension adds the posibility to drag any page downwards with touch-input to reveal a refresh-orb.

When dragging the orb downwards until it starts emitting a blue glow, the current webpage will completely reload upon touch release.                    

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

Tên Pull down reloader Pull down reloader
ID bkdocjlkniembejdhcgfgajhiagindlp
URL Chính Thức https://chromewebstore.google.com/detail/pull-down-reloader/bkdocjlkniembejdhcgfgajhiagindlp
Mô tả This extension adds the possibility to reload any page by pulling the page down on any touch device.
Kích Thước Tệp 6.68 KB
Số Lần Cài Đặt 148
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2016-01-18
Ngày Phát Hành 2016-01-18
Đánh Giá 4.09/5 Tổng số 11 Đánh Giá
Nhà Phát Triển Magnus Svensson
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Pull down reloader",
    "short_name": "PullReloader",
    "author": "Magnus Svensson",
    "description": "This extension adds the possibility to reload any page by pulling the page down on any touch device.",
    "version": "1.1",
    "permissions": [
        "activeTab"
    ],
    "icons": {
        "16": "img\/pullDownReloadSymbol.png",
        "48": "img\/pullDownReloadSymbol.png",
        "128": "img\/pullDownReloadSymbol.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "css\/pullDownReloader.css"
            ],
            "js": [
                "js\/pullDownReloader.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "img\/pullDownReloadSymbol.png"
    ]
}