Reload All Tabs

Reloads all open tabs in one click.

ما هو Reload All Tabs؟

Reload All Tabs هو إضافة Chrome تم تطويرها بواسطة itworks، والميزة الرئيسية لها هي "Reloads all open tabs in one click.".

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

screenshot

تحميل ملف CRX للإضافة Reload All Tabs

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

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

                        A simple extension that gives you a button to reload all open tabs.

Features:
- Context menus and an option to reload pinned tabs only.
- Option to reload all tabs in all windows.                    

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

الاسم Reload All Tabs Reload All Tabs
ID lpkdnfkjhdkcpimadpdcgapffceacjem
عنوان URL الرسمي https://chromewebstore.google.com/detail/reload-all-tabs/lpkdnfkjhdkcpimadpdcgapffceacjem
الوصف Reloads all open tabs in one click.
حجم الملف 29.98 KB
عدد التثبيتات 9,489
النسخة الحالية 1.5.5.3
آخر تحديث 2018-06-08
تاريخ النشر 2018-06-07
تقييم 4.05/5 مجموع تقييمات 114
المطور itworks
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Reload All Tabs",
    "version": "1.5.5.3",
    "description": "Reloads all open tabs in one click.",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/script.js"
            ]
        }
    ],
    "options_page": "options.html",
    "permissions": [
        "tabs",
        "contextMenus",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "browser_action": {
        "default_title": "Reload All Tabs",
        "default_icon": "icon19.png",
        "default_popup": "menu.html"
    },
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}