Followed By

Followed By uses GitHub’s public API to fetch mutual followers for every profile you visit, straight to the profile page!

Followed By là gì?

Followed By là một tiện ích mở rộng Chrome được phát triển bởi jivansh17, và tính năng chính của nó là "Followed By uses GitHub’s public API to fetch mutual followers for every profile you visit, straight to the profile page!".

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

screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng Followed By 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

                        ever visit someone’s GitHub profile and wonder — hmm, do we know each other? well here’s an easy fix to traverse the builders social graph:  ✨ getfollowedby.xyz  ✨

🤔 it’s cool, but is it any good?

1. get set build: no package installs, followedby has 0 runtime dependancies
2. your data is yours: no logging or storage on any server, because there ain’t any!
3. clean and concise: built only using vanilla JS and the web API
4. feels like it belongs: all UI config is inspired from GitHub Sponsors, making followed by look like a first party product

🫡 plans for the future?
this project was made purely out of fun, to take my mind off things. feel free to contribute by creating issues/PRs and i will review them when i get the time. potential future features, might include `follows you` badges, safari support and migrating to typescript.

made for fun, and maybe for myself ✌️                    

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

Tên Followed By Followed By
ID hhjhlgbgeckeecplimppmofblgicnmpa
URL Chính Thức https://chromewebstore.google.com/detail/followed-by/hhjhlgbgeckeecplimppmofblgicnmpa
Mô tả Followed By uses GitHub’s public API to fetch mutual followers for every profile you visit, straight to the profile page!
Kích Thước Tệp 27.81 KB
Số Lần Cài Đặt 46
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2022-07-20
Ngày Phát Hành 2022-07-19
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển jivansh17
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://getfollowedby.vercel.app/
URL Trang Trợ Giúp https://github.com/parzuko/followedby
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Followed By",
    "description": "Followed By uses GitHub\u2019s public API to fetch mutual followers for every profile you visit, straight to the profile page!",
    "version": "1.0.1",
    "icons": {
        "16": "assets\/16.png",
        "32": "assets\/32.png",
        "48": "assets\/48.png",
        "128": "assets\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/github.com\/*?tab=*"
            ],
            "exclude_matches": [
                "https:\/\/github.com\/*\/*",
                "https:\/\/github.com\/"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "src\/app.js",
                "src\/utils\/api.js",
                "src\/utils\/storage.js",
                "src\/utils\/aggregators.js",
                "src\/utils\/views.js"
            ],
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "use_dynamic_url": true
        }
    ]
}