-
-
Notifications
You must be signed in to change notification settings - Fork 48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Safari extension #62
Comments
With the release of Safari 14.0 Apple made available a way to convert web extensions to Safari, via XCode - https://developer.apple.com/documentation/safariservices/safari_web_extensions/converting_a_web_extension_for_safari. |
I would love to see a Safari extension! Unfortunately, I am too busy to code one. Maybe I will find time in the next years. |
I've managed to get the extension working as a Safari extension by converting it in Xcode and making a few adjustments. Hopefully, it will be officially addressed.
cors_origins.append("moz-extension://*")
+ cors_origins.append("safari-web-extension://*")
const browser_appnames = {
+ safari: [
+ 'Safari',
+ 'safari'
+ ],
chrome: [ |
Any chance this change can be merged? I'd really like to use the web watcher on safari :) |
If anyone makes a PR with the changes I'd be happy to merge it :) |
It would be nice if you made a Safari extension. Since starting with version 14, support for the WebExtensions API has appeared. More details: https://developer.apple.com/documentation/safariservices/safari_web_extensions
The text was updated successfully, but these errors were encountered: