Bridgy

Bridgy connects your web site to social media. This extension adds Facebook support.

O que é Bridgy?

Bridgy é uma extensão do Chrome desenvolvida por https://brid.gy, e sua principal característica é "Bridgy connects your web site to social media. This extension adds Facebook support.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Bridgy

Baixe arquivos de extensão Bridgy no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        Bridgy (brid.gy) connects your web site to social media as part of the IndieWeb (indieweb.org). This extension provides backfeed for Facebook: it pulls back comments and likes from those sites to your own web site. See the Bridgy docs for more background and details.

Your web site needs to support IndieAuth (indieauth.net). When you install the extension, it opens a Bridgy page for you to IndieAuth into your site. After that, it runs in the background, forwarding Facebook responses to Bridgy to send back to your site. You can see status info and poke it on the extension settings page.

Bridgy originally used Facebook's API to do this, but they later restricted that API. Fortunately you can still log into and use them legitimately in your browser, so this extension lets you send your own data to Bridgy, automatically.

Join the IndieWeb chat at indieweb.org/discuss to ask questions or give us feedback!

What's new:

0.7.0, 2024-01-03

* Remove Instgram. Their anti-bot defenses have led them to suspend a couple people's accounts for using this extension, so we're disabling it out of an abundance of caution. Sorry for the bad news.

0.6.1, 2022-09-18

* Don't open silo login pages if they're not logged in. This ran at extension startup time, which was mostly harmless in manifest v2 since the background page was persistent stayed loaded, but in manifest v3 it's a service worker or non-persistent background page, which gets unloaded and then reloaded every 5m.

0.6.0, 2022-09-17

* Migrate Chrome (but not Firefox) from Manifest v2 to v3.

0.5, 2022-07-21

* Update Instagram scraping.

0.4, 2022-01-30

* Fix Instagram comments. Add extra client side API fetch, forward to new Bridgy endpoint.
* Expand error messages in options UI.

0.3.5, 2021-03-04

* Dynamically adjust polling frequency per silo based on how often we're seeing new comments and reactions, how recent the last successful webmention was, etc.

0.3.4, 2021-02-22

* Allow individually enabling or disabling Instagram and Facebook.

0.3.3, 2021-02-20

* Only override requests from the browser extension, not all requests to the silos' domains.

0.3.2, 2021-02-18

* Fix compatibility with Facebook Container Tabs.

0.3.1, 2021-02-17

* Add Facebook support!

0.2.1, 2021-01-09

* Add more details to extensions option page: Instagram login, Bridgy IndieAuth registration, etc.
* Support Firefox's Facebook Container Tabs addon.

0.2, 2021-01-03

* Add IndieAuth login on https://brid.gy/ and token handling.
* Add extension settings page with status info and buttons to login again and poll now.
* Better error handling.

0.1.5, 2020-12-25

* Initial beta release!                    

Informações Básicas da Extensão

Nome Bridgy Bridgy
ID lcpeamdhminbbjdfjbpmhgjgliaknflj
URL Oficial https://chromewebstore.google.com/detail/bridgy/lcpeamdhminbbjdfjbpmhgjgliaknflj
Descrição Bridgy connects your web site to social media. This extension adds Facebook support.
Tamanho do Arquivo 89.02 KB
Contagem de Instalações 98
Versão Atual 0.7.0
Última Atualização 2024-01-04
Data de Publicação 2021-01-10
Desenvolvedor https://brid.gy
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://brid.gy/
URL da Página de Política de Privacidade https://brid.gy/about
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Bridgy",
    "version": "0.7.0",
    "description": "Bridgy connects your web site to social media. This extension adds Facebook support.",
    "homepage_url": "https:\/\/brid.gy\/",
    "manifest_version": 3,
    "minimum_chrome_version": "88",
    "permissions": [
        "alarms",
        "cookies",
        "storage"
    ],
    "host_permissions": [
        "*:\/\/*.brid.gy\/*",
        "*:\/\/*.facebook.com\/*"
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "icons": {
        "128": "bridgy_logo_128.jpg",
        "1024": "bridgy_logo_square_1024.jpg"
    },
    "options_ui": {
        "page": "options.html",
        "browser_style": true
    }
}