-
Notifications
You must be signed in to change notification settings - Fork 239
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
Make scanning clipboard for JIDs optional #281
Comments
I appreciate that you don't want apps to access the clipboard, as it might contain sensitive information. Is there a reason why this is especially problematic, do you have some kind of clipboard monitor that creates warnings each time? Regarding the feature itself and its security: yaxim is FOSS and you can inspect the source code. The feature of "do the useful thing with clipboard content" is also present in major apps like Firefox or Google Maps, and I consider it a good usability improvement that I'm even sometimes using myself. The architecture of the android menu bar with overflow menus requires to fetch the clipboard content on each launch of the main window to provide this functionality - otherwise there'd be just an "Add from clipboard" item that would or would not work. Regarding making it an option, I am strictly opposed. Every checkbox option doubles the number of possible internal states and makes the program less easy to understand and to use. There is a good description at https://neugierig.org/software/blog/2018/07/options.html with which I fully agree. If this is very important to you, and you can not block yaxim's access to the clipboard or whitelist it in the monitoring tool you use, then I fear the only way out will be for you to maintain your own fork of the app. All you need to do is to comment out the function call to |
Android itself has this functionality. So every time an app pastes something from the clipboard, I get an information about it.
Correct Firefox uses the feature too, but they handle this somehow different. They can detect if there is a link in the clipboard and no simple text or other kind of data. But how they detect this, causes no paste action - at least I don't get an information about pasting something from my clipboard. Only when I click the And most important, Firefox has an option to disable this feature.
I basically agree on "no option for everything" but this is somehow a security related feature. What if someday a "log4j" kind of issue is detected for the use of Androids |
It might be a
but some people don't need/want this feature. So make this feature an opt-out - feature. Until now I could not find any setting which disables this feature.
You could, if disabled, add an additional - menu Entry where the user can execute this feature manually if needed.
The text was updated successfully, but these errors were encountered: