Arrow Browse

Allows use of arrow keys to move to next and previous pages.

ما هو Arrow Browse؟

Arrow Browse هو إضافة Chrome تم تطويرها بواسطة benjamin12g، والميزة الرئيسية لها هي "Allows use of arrow keys to move to next and previous pages.".

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

screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Arrow Browse

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

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

                        Searches pages for links or buttons that contain some reference to "next" or "previous" and trigger those links/buttons on the pressing of the left or right arrow keys on the keyboard (left for previous, right for next). 

Its great for reading through tutorials, web comics, blogs, video blogs or really any content that comes in a linear series of pages.                    

معلومات أساسية عن التمديد

الاسم Arrow Browse Arrow Browse
ID mmnojcmflanomipfjmbmnafphfcigage
عنوان URL الرسمي https://chrome.google.com/webstore/detail/arrow-browse/mmnojcmflanomipfjmbmnafphfcigage
الوصف Allows use of arrow keys to move to next and previous pages.
حجم الملف 11.57 KB
عدد التثبيتات 25
النسخة الحالية 1.1.1
آخر تحديث 2015-02-12
تاريخ النشر 2015-02-12
تقييم 5.00/5 مجموع تقييمات 3
المطور benjamin12g
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Arrow Browse",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "description": "Allows use of arrow keys to move to next and previous pages.",
    "version": "1.1.1",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon16.png",
        "default_title": "Arrow Browse",
        "default_popup": "extension.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ]
}