Skip to content
This repository has been archived by the owner on Jun 5, 2023. It is now read-only.

Declaring Permissions

jiajunGit edited this page Jul 24, 2017 · 1 revision

Before using most of chrome's API, you must declare permissions needed in the extension's manifest like shown below:

"permissions": [ "tabs",
                 "https://github.com/*", 
                 "http://github.com/*" ]

To learn more about permissions, visit https://developer.chrome.com/extensions/declare_permissions

Clone this wiki locally