Created
June 14, 2022 22:42
-
-
Save GregRos/527be3480343fed1139c20d9f18c2c64 to your computer and use it in GitHub Desktop.
Manifest.json including a list of all permissions on my platform, 2022-06-15
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "Getting Started Example", | |
"description": "Build an Extension!", | |
"version": "1.0", | |
"manifest_version": 3, | |
"permissions": [ | |
"activeTab", | |
"alarms", | |
"background", | |
"bookmarks", | |
"browsingData", | |
"clipboardRead", | |
"clipboardWrite", | |
"contentSettings", | |
"contextMenus", | |
"cookies", | |
"debugger", | |
"declarativeContent", | |
"declarativeNetRequest", | |
"declarativeNetRequestFeedback", | |
"desktopCapture", | |
"downloads", | |
"fontSettings", | |
"gcm", | |
"geolocation", | |
"history", | |
"identity", | |
"idle", | |
"management", | |
"nativeMessaging", | |
"notifications", | |
"pageCapture", | |
"power", | |
"printerProvider", | |
"privacy", | |
"proxy", | |
"scripting", | |
"search", | |
"sessions", | |
"storage", | |
"system.cpu", | |
"system.display", | |
"system.memory", | |
"system.storage", | |
"tabCapture", | |
"tabGroups", | |
"tabs", | |
"topSites", | |
"tts", | |
"ttsEngine", | |
"unlimitedStorage", | |
"webNavigation", | |
"webRequest" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment