Skip to content

Commit

Permalink
Add "scripting" permission for copying debug information
Browse files Browse the repository at this point in the history
  • Loading branch information
taupiqueur committed Jul 15, 2024
1 parent 9c74bd1 commit 8c23e59
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion PRIVACY.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,17 @@ Opens videos in webpages with a media player program.

Permission | Justification
--- | ---
[`"activeTab"`] | This permission is used to open the current tab’s URL with mpv.
[`"activeTab"`] | This permission is used in conjunction with the `"scripting"` permission for interacting with web pages and to open the current tab’s URL with mpv.
[`"contextMenus"`] | This permission is used to add the “Documentation” and “Support Chat” buttons to the mpv toolbar.
[`"nativeMessaging"`] | This permission is used to allow communication with the shell application.
[`"scripting"`] | This permission is used for copying debug information to the system clipboard.
[`"storage"`] | This permission is used to save your options.
[`"tabGroups"`] | This permission is used to open a new tab to the right.

[`"activeTab"`]: https://developer.chrome.com/docs/extensions/reference/permissions-list#activeTab
[`"contextMenus"`]: https://developer.chrome.com/docs/extensions/reference/permissions-list#contextMenus
[`"nativeMessaging"`]: https://developer.chrome.com/docs/extensions/reference/permissions-list#nativeMessaging
[`"scripting"`]: https://developer.chrome.com/docs/extensions/reference/permissions-list#scripting
[`"storage"`]: https://developer.chrome.com/docs/extensions/reference/permissions-list#storage
[`"tabGroups"`]: https://developer.chrome.com/docs/extensions/reference/permissions-list#tabGroups

Expand Down
1 change: 1 addition & 0 deletions manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"activeTab",
"contextMenus",
"nativeMessaging",
"scripting",
"storage",
"tabGroups"
],
Expand Down

0 comments on commit 8c23e59

Please sign in to comment.