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 هو إضافة Chrome تم تطويرها بواسطة Magnus Svensson، والميزة الرئيسية لها هي "This extension adds the possibility to reload any page by pulling the page down on any touch device.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Pull down reloader

قم بتنزيل ملفات الامتداد Pull down reloader بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
    ]
}