Bridgy

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

什么是Bridgy?

Bridgy是由https://brid.gy开发的Chrome扩展程序,该扩展的主要功能是“Bridgy connects your web site to social media. This extension adds Facebook support.”。

扩展截图

screenshot

下载Bridgy扩展crx文件

下载Bridgy扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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!                    

扩展基本信息

名称 Bridgy Bridgy
ID lcpeamdhminbbjdfjbpmhgjgliaknflj
官方URL https://chromewebstore.google.com/detail/bridgy/lcpeamdhminbbjdfjbpmhgjgliaknflj
简介 Bridgy connects your web site to social media. This extension adds Facebook support.
文件大小 89.02 KB
安装次数 98
当前版本 0.7.0
更新时间 2024-01-04
上架时间 2021-01-10
开发者 https://brid.gy
电子邮箱 [email protected]
付费类型 free
扩展官网 https://brid.gy/
隐私政策页面URL https://brid.gy/about
支持的语言 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
    }
}