Bridgy

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

Bridgy là gì?

Bridgy là một tiện ích mở rộng Chrome được phát triển bởi https://brid.gy, và tính năng chính của nó là "Bridgy connects your web site to social media. This extension adds Facebook support.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Bridgy

Tải xuống các tệp mở rộng Bridgy dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Bridgy Bridgy
ID lcpeamdhminbbjdfjbpmhgjgliaknflj
URL Chính Thức https://chromewebstore.google.com/detail/bridgy/lcpeamdhminbbjdfjbpmhgjgliaknflj
Mô tả Bridgy connects your web site to social media. This extension adds Facebook support.
Kích Thước Tệp 89.02 KB
Số Lần Cài Đặt 98
Phiên Bản Hiện Tại 0.7.0
Cập Nhật Lần Cuối 2024-01-04
Ngày Phát Hành 2021-01-10
Nhà Phát Triển https://brid.gy
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://brid.gy/
URL Trang Chính Sách Bảo Mật https://brid.gy/about
Ngôn Ngữ Được Hỗ Trợ 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
    }
}