Pull down reloader

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

Pull down reloaderとは何ですか?

Pull down reloaderはMagnus Svenssonによって開発されたChromeの拡張機能で、その主な機能は「This extension adds the possibility to reload any page by pulling the page down on any touch device.」です。

拡張機能のスクリーンショット

screenshot

Pull down reloader拡張機能のCRXファイルをダウンロード

Pull down reloader拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Pull down reloader Pull down reloader
ID bkdocjlkniembejdhcgfgajhiagindlp
公式URL https://chromewebstore.google.com/detail/pull-down-reloader/bkdocjlkniembejdhcgfgajhiagindlp
説明 This extension adds the possibility to reload any page by pulling the page down on any touch device.
ファイルサイズ 6.68 KB
インストール数 148
現在のバージョン 1.1
最終更新日 2016-01-18
公開日 2016-01-18
評価 4.09/5 合計 11 レビュー
開発者 Magnus Svensson
支払い方法 free
対応言語 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"
    ]
}