I have been working on an extension which I migrated with xcrun safari-web-extension-converter PATH.
When I press extension button on safari toolbar it shows me message like,
Here is excerpt from manifest.json,
It feels access to sensitive information is a bit scary for extension which just stores and manages URLs. Would you suggest me any solution over here so I can use limited permission and avoid sensitive info message..?
When I press extension button on safari toolbar it shows me message like,
However, my extension is only accessing url to bookmark it and localstorage to access user tokens, tabs so new tab with somedomain.in can be opened open bookmarked link into new tab.This extension would be able to read and alter webpages and see your browsing history on this website. This could include sensitive information, including passwords, phone numbers, and credit cards.
Here is excerpt from manifest.json,
Code Block "permissions" : [ "*://*.domain.in/*", "activeTab", "storage", "notifications", "tabs" ], "optional_permissions": ["activeTab", "*://*.domain.in/*"], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "web_accessible_resources": [ "corner.css", "js/init.js", "init.bundled.js", "js/jquery.min.js", "js/taggle.min.js", "js/typeahead.bundle.min.js", "ext.html.js", "assets/*" ],
It feels access to sensitive information is a bit scary for extension which just stores and manages URLs. Would you suggest me any solution over here so I can use limited permission and avoid sensitive info message..?