Extension Permissions

Display a list of permissions per extensions

Extension Permissionsคืออะไร?

Extension Permissions เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Bill Miller และคุณลักษณะหลักของมันคือ "Display a list of permissions per extensions"

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

screenshot

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

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

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

                        View permissions for each extension by selecting "Permissions" from the context menu.                    

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

ชื่อ Extension Permissions Extension Permissions
ID kdiffonmcmgmehnmbmihapeaohjlaoch
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/extension-permissions/kdiffonmcmgmehnmbmihapeaohjlaoch
คำอธิบาย Display a list of permissions per extensions
ขนาดไฟล์ 44.49 KB
จำนวนการติดตั้ง 2,598
เวอร์ชันปัจจุบัน 0.1
อัปเดตครั้งล่าสุด 2014-07-09
วันที่เผยแพร่ 2014-07-09
คะแนน 2.50/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Bill Miller
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Extension Permissions",
    "description": "Display a list of permissions per extensions",
    "version": "0.1",
    "manifest_version": 2,
    "permissions": [
        "contextMenus",
        "management",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery.min.js",
                "popup.min.js",
                "extension.js"
            ]
        }
    ]
}