Reload on Focus

Reload a tab whenever it receives the focus.

ما هو Reload on Focus؟

Reload on Focus هو إضافة Chrome تم تطويرها بواسطة Stephen Blott، والميزة الرئيسية لها هي "Reload a tab whenever it receives the focus.".

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

screenshot

تحميل ملف CRX للإضافة Reload on Focus

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

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

                        This is a very simple extension which (for pages matching a list of RegExps) reloads a tab each time it receives the focus.

It is intended for developers who work a bit, then revisit Chrome to view the fruit of their labors.                    

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

الاسم Reload on Focus Reload on Focus
ID bhniofijcncimngchakbghfgfjijjchp
عنوان URL الرسمي https://chromewebstore.google.com/detail/reload-on-focus/bhniofijcncimngchakbghfgfjijjchp
الوصف Reload a tab whenever it receives the focus.
حجم الملف 37.33 KB
عدد التثبيتات 93
النسخة الحالية 1.0
آخر تحديث 2019-01-05
تاريخ النشر 2019-01-01
تقييم 5.00/5 مجموع تقييمات 2
المطور Stephen Blott
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/smblott-github/chrome-reload-on-focus
عنوان صفحة المساعدة https://github.com/smblott-github/chrome-reload-on-focus/issues
اللغات المدعومة en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Reload on Focus",
    "version": "1.0",
    "description": "Reload a tab whenever it receives the focus.",
    "minimum_chrome_version": "51.0",
    "permissions": [
        "storage",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "rof-content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "rof-background.js"
        ]
    },
    "options_ui": {
        "page": "rof-options.html",
        "chrome_style": false,
        "open_in_tab": true
    },
    "browser_action": {
        "default_icon": "icons\/rof-off-512x512.png"
    }
}