Extension Permissions
Display a list of permissions per extensions
Wat is Extension Permissions?
Extension Permissions is een Chrome-extensie ontwikkeld door Bill Miller, en de belangrijkste functie is "Display a list of permissions per extensions".
Extensie Screenshots
Download het CRX-bestand van de extensie Extension Permissions
Download Extension Permissions-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
View permissions for each extension by selecting "Permissions" from the context menu. Basisinformatie over de Extensie
| Naam | |
| ID | kdiffonmcmgmehnmbmihapeaohjlaoch |
| Officiële URL | https://chrome.google.com/webstore/detail/extension-permissions/kdiffonmcmgmehnmbmihapeaohjlaoch |
| Beschrijving | Display a list of permissions per extensions |
| Bestandsgrootte | 44.49 KB |
| Aantal Installaties | 2,598 |
| Huidige Versie | 0.1 |
| Laatst Bijgewerkt | 2014-07-09 |
| Publicatiedatum | 2014-07-09 |
| Beoordeling | 2.50/5 Totaal 2 Beoordelingen |
| Ontwikkelaar | Bill Miller |
| Betalingswijze | free |
| Ondersteunde Talen | 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"
]
}
]
} | |