ehmorris / High-Resolution-Downloader-For-Instagram

A Chrome extension for easily downloading high resolution copies of any Instagram photo, video, or story.
GNU General Public License v3.0
88 stars 8 forks source link

Add the clipboardWrite permission #43

Closed ehmorris closed 5 years ago

ehmorris commented 5 years ago

https://developer.chrome.com/extensions/declare_permissions

According to the docs on the above page, the clipboardWrite permission:

Indicates the extension or app uses document.execCommand('copy') or document.execCommand('cut'). This permission is required for hosted apps; it's recommended for extensions and packaged apps.

Since the web store will be auditing apps for permissions use soon, this is a good time to add recommended permissions.

Fixes #42. I found that using activeTab is not tenable for this react-based extension.