Pull down reloader

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

What is Pull down reloader?

Pull down reloader is a Chrome extension developed by Magnus Svensson, and its main feature is "This extension adds the possibility to reload any page by pulling the page down on any touch device.".

Extension Screenshots

screenshot

Download Pull down reloader Extension CRX File

Download Pull down reloader extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Pull down reloader Pull down reloader
ID bkdocjlkniembejdhcgfgajhiagindlp
Official URL https://chromewebstore.google.com/detail/pull-down-reloader/bkdocjlkniembejdhcgfgajhiagindlp
Description This extension adds the possibility to reload any page by pulling the page down on any touch device.
File Size 6.68 KB
Installation Count 148
Current Version 1.1
Last Updated 2016-01-18
Publish Date 2016-01-18
Rating 4.09/5 Total 11 Ratings
Developer Magnus Svensson
Payment Type free
Supported Languages 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"
    ]
}