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 क्या है?

Followed By jivansh17 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Followed By uses GitHub’s public API to fetch mutual followers for every profile you visit, straight to the profile page!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Followed By एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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 ✌️                    

एक्सटेंशन की मूल जानकारी

नाम Followed By Followed By
ID hhjhlgbgeckeecplimppmofblgicnmpa
आधिकारिक URL https://chromewebstore.google.com/detail/followed-by/hhjhlgbgeckeecplimppmofblgicnmpa
विवरण Followed By uses GitHub’s public API to fetch mutual followers for every profile you visit, straight to the profile page!
फ़ाइल का आकार 27.81 KB
स्थापना संख्या 46
वर्तमान संस्करण 1.0.1
अंतिम अपडेट 2022-07-20
प्रकाशन तिथि 2022-07-19
रेटिंग 5.00/5 कुल 4 रेटिंग्स
डेवलपर jivansh17
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://getfollowedby.vercel.app/
सहायता पृष्ठ URL https://github.com/parzuko/followedby
समर्थित भाषाएँ 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
        }
    ]
}