-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
13 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Permissions Explanation | ||
|
||
1. downloads - Generated epub needs download permission to be downloaded. | ||
2. storage - Parser definitions are stored in local storage so modifications can be done. | ||
3. scripting - Parser definitions are stored as javascript code for maximum flexibility, | ||
this allows eval of the definition upon start up. | ||
4. <all_urls> - For background fetching of chapters. | ||
5. clipboardRead (optional) - For setting cover image from clipboard. | ||
6. unlimitedStorage (optional) - If you want to cache current parsed text, | ||
this is necessary to overcome storage limits. | ||
7. declarativeNetRequestWithHostAccess, declarativeNetRequestFeedback (optional) - Some websites do not | ||
allow fetching of resources without a "referer" header, this injects a referer for requests | ||
coming from the extension. |