Bridgy

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

¿Qué es Bridgy?

Bridgy es una extensión de Chrome desarrollada por https://brid.gy, y su función principal es "Bridgy connects your web site to social media. This extension adds Facebook support.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Bridgy

Descarga archivos de extensión Bridgy en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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!                    

Información Básica de la Extensión

Nombre Bridgy Bridgy
ID lcpeamdhminbbjdfjbpmhgjgliaknflj
URL Oficial https://chromewebstore.google.com/detail/bridgy/lcpeamdhminbbjdfjbpmhgjgliaknflj
Descripción Bridgy connects your web site to social media. This extension adds Facebook support.
Tamaño del Archivo 89.02 KB
Cantidad de Instalaciones 98
Versión Actual 0.7.0
Última Actualización 2024-01-04
Fecha de Publicación 2021-01-10
Desarrollador https://brid.gy
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://brid.gy/
URL de la Página de Política de Privacidad https://brid.gy/about
Idiomas Soportados 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
    }
}