Chrome/Firefox extension "Share to discourse"

I’m not interested in making a browser extension, but I’d like to try making a share to Discourse plugin for WordPress. A specific logo could be used to link to a specific forum, or clicking a general logo could open a modal window with a list of forums that had registered with the plugin. Once a forum was selected, it would be possible to offer a list of categories/groups/individuals to share the post with.

The end result would be to open a new browser tab with a link similar to the one @david posted. Doing it this way would let Discourse handle the most of the work.

I’ll try making a prototype of it and see if it makes any sense. Thanks for the idea.

4 лайка

I’m willing to support that idea Simon but I’m sure there is a audience for that.

Elsewhere on meta.discourse, I’ve posted my interest in a high-level, onebox integration of Diaspora* a privacy-aware, distributed, open source social network that can bring synergistic enhancement to Discourse such as a more feature rich User Profile but without adding complexity and dreaded Feature Fatigue.

Adding standard, and it is unquestionably a web standard, contempory social media share tools caters to web denizens whose lives online are entirely on the surface:

  • Instagram,
  • Snapchat,
  • YouTube,
  • Facebook
  • Oxford English Dictionary

The SUBVS.US proposal for the Diaspora of Discourse plugin with Diasora sidebars open and Discourse selected instead of the stock Diaspora Activity Stream


Instead of static sidebars these have Sliders ie Baby Hamburgers on each side that can be set to open and close automagically or manually. In this mockup we see the Discourse forum is “In Focus”, the Activity Stream is always a toggle away from use.

A social media button would be accessible at all times within the editor.

The iconic share buttons look and work the same on every website. All of them are connected, and I simply propose making acess to that ecosystem possible from within a Discourse paradigm.

Another long term project you probably will claim you don’t get, is Discourse for Google Docs, a version of WordPress for Google Docs it is one of my all time favorite chunks of code from Automatic.

1 лайк

This will be covered by the new Web API:

7 лайков

This is live in Chrome Canary/Dev. However Firefox and Chrome devs are discussing the string format of the URL and this will not land in stable browsers until it gets settled.

Here is how it will work when this lands:

7 лайков

This is what I have been looking for! A lot of people like to just click and share, I have a few web site owns will to place something like this on there website so our users can post on to our forums with ease

2 лайка

Это очень помогло мне.

Это открывает ссылку в новом окне и добавляет категорию ссылок:

javascript:window.open("https://www.example-forum.com/new-topic?category=links&title="+encodeURIComponent(window.location.href), "_blank");

Теперь я могу очень быстро добавлять ссылки на свой форум, которые потом смогу отсортировать. Учитывая, что я использую форум как базу знаний или цифровой сад, это позволяет очень удобно сохранять ссылки для последующей доработки.

4 лайка

Кстати, если кто-то спрашивает, что с этим делать, сохраните это как закладку, затем вы можете нажать на закладку, чтобы выполнить действие

2 лайка

Это сложная тема… как мне добавлять полезные ссылки в Discourse одной кнопкой.

Думаю, логика не сильно отличается от кнопки «Опубликовать в Discourse» в меню «Поделиться» на iOS.

Это можно запрограммировать следующим образом:

  • Получить входные данные из меню «Поделиться»; имя кнопки в этом меню будет именем ярлыка.
  • Извлечь текст из входных данных ярлыка.
  • Текст «ook» (часть слова Look, как в фразе «Look what i found on» — «Посмотрите, что я нашёл на»).
  • Текст «I» (как в фразе «I found» — «Я нашёл»).
  • Текст «Source:» (как в указании источника URL).
  • Текст «heck» (часть слова Check, как в фразе «Check out what i found» — «Посмотрите, что я нашёл»).
  • Если какой-либо из вышеуказанных текстов совпадает с входным текстом:
    • Заменить «Source:» на «just want a link» (просто хочу ссылку).
    • Извлечь URL из этого.
    • Извлечь хост.
    • Извлечь путь.
    • Извлечь параметры запроса (query).
    • Закодировать хост, путь, «?» и параметры запроса как URL.
    • Сформировать текст: https://yourdomain.co.uk/new-topic?title=Shared%20from%20iOS&body=https://[закодированный URL]
    • Открыть этот текст в Safari.

Иначе:

  • Если входной текст ярлыка содержит «g.co»:
    • Найти совпадение с регулярным выражением https?://(.*) в тексте.
    • Получить группу с индексом 1 в совпадениях.
    • Сформировать текст: https://yourdomain.co.uk/new-topic?title=Shared%20from%20iOS&body=https://[найденный текст]
    • Открыть этот текст в Safari.

Иначе:

  • Если входной текст ярлыка содержит «youtube»:
    • Извлечь хост.
    • Извлечь путь.
    • Извлечь параметры запроса.
    • Закодировать.
    • Сформировать текст URL форума.
    • Открыть в Safari.

Иначе:

  • Текст — это просто текст.
    • Пусть телом сообщения будет сам текст.

:rofl:

1 лайк

По-моему, это расширение для Chrome, которое я создал, может реализовать некоторые из запрошенных здесь функций. Буду очень рад получить обратную связь, желательно в этой теме, чтобы всё было в одном месте.

6 лайков

Видео-пример для тех, кто хочет увидеть это в действии:

2 лайка