LiveReload++

Watches a port and reloads the page if needed.

ما هو LiveReload++؟

LiveReload++ هو إضافة Chrome تم تطويرها بواسطة codePlanet، والميزة الرئيسية لها هي "Watches a port and reloads the page if needed.".

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

screenshot

تحميل ملف CRX للإضافة LiveReload++

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

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

                        Provides extended support for LiveReload (livereload.com) in Chrome. This version includes support for options such as host and port. 

It appears the original project is no longer active. This extension has been rewritten as to not violate the license from the original project. Due to this, there might be some missing features. If you would like additional features added, please make a request.                    

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

الاسم LiveReload++ LiveReload++
ID ciehpookapcdlakedibajeccomagbfab
عنوان URL الرسمي https://chromewebstore.google.com/detail/livereload++/ciehpookapcdlakedibajeccomagbfab
الوصف Watches a port and reloads the page if needed.
حجم الملف 16.46 KB
عدد التثبيتات 5,023
النسخة الحالية 0.0.2
آخر تحديث 2017-01-09
تاريخ النشر 2017-01-09
تقييم 5.00/5 مجموع تقييمات 6
المطور codePlanet
نوع الدفع free
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "LiveReload++",
    "description": "Watches a port and reloads the page if needed.",
    "version": "0.0.2",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*"
            ],
            "js": [
                "scripts\/content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "browser_action": {
        "default_icon": {
            "128": "images\/icon-inactive.png"
        },
        "default_title": "Livereload"
    },
    "background": {
        "scripts": [
            "scripts\/eventPage.js"
        ],
        "persistent": false
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "activeTab",
        "storage",
        "webNavigation",
        "tabs"
    ]
}