Quick Extension Reload

Reload extensions in development from the context menu.

Quick Extension Reloadคืออะไร?

Quick Extension Reload เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://site.simonandrewbrown.co.uk และคุณลักษณะหลักของมันคือ "Reload extensions in development from the context menu."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Quick Extension Reload

ดาวน์โหลดไฟล์ส่วนขยาย Quick Extension Reload ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        When developing extensions, it can be a pain to go to your extensions tab, find the extension you're working on and click "reload" every time you make a change. This extension allows you to reload your extensions from the context menu.

Just right-click on any page to reload all your extensions in development, or use the default shortcut key, Alt+R.

The icon was based on icons from the Tango project. The small icon was created by Yusuke Kamiyamane.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Quick Extension Reload Quick Extension Reload
ID goeiakeofnlpkioeadcbocfifmgkidpb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/quick-extension-reload/goeiakeofnlpkioeadcbocfifmgkidpb
คำอธิบาย Reload extensions in development from the context menu.
ขนาดไฟล์ 22.71 KB
จำนวนการติดตั้ง 772
เวอร์ชันปัจจุบัน 1.4
อัปเดตครั้งล่าสุด 2013-03-10
วันที่เผยแพร่ 2013-03-09
คะแนน 4.00/5 รวมทั้งหมด 15 คะแนน
ผู้พัฒนา https://site.simonandrewbrown.co.uk
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://www.isimonbrown.co.uk/contact/
URL หน้าช่วยเหลือ http://www.isimonbrown.co.uk/contact/
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Quick Extension Reload",
    "description": "Reload extensions in development from the context menu.",
    "version": "1.4",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "manifest_version": 2,
    "permissions": [
        "management",
        "contextMenus"
    ],
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "minimum_chrome_version": "14.0",
    "commands": {
        "reload": {
            "description": "Reload all extensions in development.",
            "suggested_key": {
                "default": "Alt+R"
            }
        }
    }
}