Auto Refresh

Auto refresh for develop

ما هو Auto Refresh؟

Auto Refresh هو إضافة Chrome تم تطويرها بواسطة selvn، والميزة الرئيسية لها هي "Auto refresh for develop".

تحميل ملف CRX للإضافة Auto Refresh

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

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

                        auto refresh your page, according to a url which return true to refresh or false not to refresh.
It is useful when you are writing html. config a page to monitor files change. If changed, this plugin will auto refresh.                    

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

الاسم Auto Refresh Auto Refresh
ID ghhlhgfnlmfajjfppidbifgdnoheojon
عنوان URL الرسمي https://chrome.google.com/webstore/detail/auto-refresh/ghhlhgfnlmfajjfppidbifgdnoheojon
الوصف Auto refresh for develop
حجم الملف 141 KB
عدد التثبيتات 71
النسخة الحالية 1
آخر تحديث 2013-06-23
تاريخ النشر 2013-06-23
تقييم 2.50/5 مجموع تقييمات 2
المطور selvn
نوع الدفع free
اللغات المدعومة zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Auto Refresh",
    "version": "1",
    "manifest_version": 2,
    "description": "Auto refresh for develop",
    "browser_action": {
        "default_icon": "icon128.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "jquery-1.8.3.min.js",
                "script.js"
            ],
            "matches": [
                "",
                "*:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "tabs",
        "*:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}