Extension Permissions

Display a list of permissions per extensions

Extension Permissionsとは何ですか?

Extension PermissionsはBill Millerによって開発されたChromeの拡張機能で、その主な機能は「Display a list of permissions per extensions」です。

拡張機能のスクリーンショット

screenshot

Extension Permissions拡張機能のCRXファイルをダウンロード

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"
            ]
        }
    ]
}