Bridgy

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

Co je Bridgy?

Bridgy je rozšíření Chrome vyvinuté https://brid.gy, a jeho hlavní funkcí je „Bridgy connects your web site to social media. This extension adds Facebook support.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Bridgy

Stáhněte si soubory rozšíření Bridgy ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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!                    

Základní Informace o Rozšíření

Název Bridgy Bridgy
ID lcpeamdhminbbjdfjbpmhgjgliaknflj
Oficiální URL https://chromewebstore.google.com/detail/bridgy/lcpeamdhminbbjdfjbpmhgjgliaknflj
Popis Bridgy connects your web site to social media. This extension adds Facebook support.
Velikost souboru 89.02 KB
Počet instalací 98
Aktuální Verze 0.7.0
Poslední Aktualizace 2024-01-04
Datum Vydání 2021-01-10
Vývojář https://brid.gy
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://brid.gy/
URL Stránky Zásad Ochrany Soukromí https://brid.gy/about
Podporované Jazyky 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
    }
}