-
Notifications
You must be signed in to change notification settings - Fork 148
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
Cooperation: Offline QR Code Generator Firefox add-on #60
Comments
Hello. I can add a button to 'About' section in Settings that will lead to the page of your add-on on the Firefox Add-on website. Please let me know if it will be fine with you. |
I'm very sorry cor the late reply, did keep it in my inbox here, but apparently forget it. Yeah, that sounds good… 🙂 I would ask you to use this link: As for me, here you can see the settings for all my random tips shown in the add-on including the JsDoc documentation for the following properties. So I would probably like to use a configuration similar to this one (I describe my reasoning in comments): {
id: "partnerAppAndroidBarcodescanner",
requiredShowCount: 4,
requireDismiss: 1, // the user needs to actively dismiss the message at least one time, so unless that is done it may be suggested randomly in-definitively
maximumDismiss: 1, // or maybe "2", but I fear this could annoy users and be regarded as an add, I'm not sure…
requiredTriggers: 15, // slightly later, however, of course only power-users will want to install/have an Android app suggested, so IMHO this is fine. Also you get to this very fast :)
randomizeDisplay: 0.8, // slightly less often show it to not
text: "tipPartnerAppAndroidBarcodescanner",
actionButton: {
text: "tipTryThisOne",
action: "tipPartnerAppAndroidBarcodescannerLink"
},
showTip: async () => {
// if user is on Android, show it more likely as that may of course be especially for them
if ((await isMobile())) {
tipSpec.randomizeDisplay = false;
}
return null; // continue as normal
}
}, The text could be something like:
(Due to size constraints, it needs to be kept short for me 🙂 ) So, as for your link, which one should I choose? |
I am the dev of a Firefox add-on for generating QR codes and I really like your QR code scanner/generator, because:
Now what?
So, however, when generating and scanning a QR code, you always need two parts: the reader and scanner. On two devices.
I mostly consider this use case: transmit some (potentially private) data from your desktop to your phone.
That's why I'd want to ask, whether we could maybe some kind of "cooperation" to suggest that we can link to each other's app/recommend it, as both things have quite common goals, IMHO. (more on that below)
What to do?
The exact details can be discussed, but I have a system to show a "random tip" to the add-on user in rare circumstances (non-annoying!). There I already have other tips included, but may also add a recommendation for your app.
Why?
Because, IMHO, the users of our software(s) will only benefit.
So recommending a good app/add-on for the "other" part to the user, helps to increase the overall ("end-to-end") security.
That said (potential problems):
IMHO, this is, however, a trade-off we can accept, because it's the nature of QR codes that you want to transmit data between different platforms, devices, browsers etc.
Also, I am indeed calling for an unobtrusive way and not for big banners or so.
I am deliberately requesting this in an issue tracker publicly here, to discuss this transparently, because this is as FLOSS projects should do it. That's my opinion, at least. 😃
Let me know what you think. 😃
The text was updated successfully, but these errors were encountered: