Extension Permissions
Display a list of permissions per extensions
What is Extension Permissions?
Extension Permissions is a Chrome extension developed by Bill Miller, and its main feature is "Display a list of permissions per extensions".
Extension Screenshots
Download Extension Permissions Extension CRX File
Download Extension Permissions extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
View permissions for each extension by selecting "Permissions" from the context menu.
Extension Basic Information
Name | |
ID | kdiffonmcmgmehnmbmihapeaohjlaoch |
Official URL | https://chrome.google.com/webstore/detail/extension-permissions/kdiffonmcmgmehnmbmihapeaohjlaoch |
Description | Display a list of permissions per extensions |
File Size | 44.49 KB |
Installation Count | 2,598 |
Current Version | 0.1 |
Last Updated | 2014-07-09 |
Publish Date | 2014-07-09 |
Rating | 2.50/5 Total 2 Ratings |
Developer | Bill Miller |
Payment Type | free |
Supported Languages | 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" ] } ] } |