[SUGESTION] Remove NewsVine and more...
See original GitHub issueI may be wrong but it seems NewsVine is no longer working.
Possible support for WhatsApp Web depends on browser detection (mobile / browser) see:
Strange error (api.whatsapp.com redirect Firefox, Opera, IE and Edge to mobile protocol [whatsapp://]) https://webapps.stackexchange.com/questions/106145/whatsapp-link-with-phone-number-doesnt-open-whatsapps-web-app
Based on detection: rewrite api.xxx.xxx to web.xxx.xxx (it’s work)
In some scenarios the “pop-up” may be blocked … maybe a “link” option is less blocking.
But this approach has its particularity in Firefox:
If is Firefox, append to
<body>
before trigger “click” Event https://stackoverflow.com/questions/32225904/programmatical-click-on-a-tag-not-working-in-firefox
Add new services:
{
name: 'G-Bookmarks',
class: 'google',
url: 'https://www.google.com/bookmarks/mark?op=edit&bkmk={url}&title={title}&annotation={desc}&labels={tags}'
},
{
name: 'Flattr',
class: 'flattr',
url: 'https://flattr.com/submit/auto?user_id={account_id}&url={url}&title={title}'
},
{
name: 'EchoJS',
class: 'echojs',
url: 'http://www.echojs.com/submit?u={url}&t={title}'
},
{
name: 'Hacker News',
class: 'hackernews',
url: 'https://news.ycombinator.com/submitlink?u={url}&t={title}'
},
{
name: 'Mail',
class: 'mail',
url: 'mailto:example@host.com?subject={title}&body={desc}'
}
Mobile options like Viber are only effective if they are launched in a “mobile” navigation … it does not make sense to be available in a “desktop” nagation because they will not lead anywhere (I think).
I did something derived … if you want to take a look: https://subversivo58.github.io/lab/social-share-link.html
Issue Analytics
- State:
- Created 6 years ago
- Reactions:1
- Comments:15
Top GitHub Comments
I’m using Firefox 59 and the only thing I got was warnings about Instapaper’s own CSP policies, but I did not notice anything different from the service against Google Chrome (or Chromium that I also tested) … plus the CSP conflict warning only occurred in Firefox itself.
Let me know which FF version you tested?
Like Yahoo (compose.mail.yahoo.com), Gmail also has a call:
https://mail.google.com/mail/?view=cm&to={email_address}&su={title}&body={url}
Apparently
view=cm
defines: view = compose message … it is also possible to pass the parameters cc (Cc) and bcc (Cco) (optionally), the “to” parameter accepts not only one but a list comma separatedI found this reference in StackOverflow but I could not find anything in Gmail Api itself
Even with so many networks and existing channels the email is still very used … I will seek referrals from other popular email services (if there is interest)
Hey hey,
RE: The new links…
Removed FriendFeed, added InstaPaper Source + tested-by-devs note (with notice about browser compatibility), and updated getPocket from
save
toedit
(good catch on that one, I had to retest a few times before I really saw the issue).RE: HTTPS, I would require it for anywhere personally-identifiable information is transferred. Digg has an interesting setup – they only allow login through 3rd party apps (like Google), and this transfer seems to be the only place where authentication happens (which forces it to be https at authentication time). It’s really not such a big cost to have this done, and the mathematics behind the authentication mechanism is sound.
Closing for now…let me know if you spot anything more! Always got my eye open.
Thanks!