Mastodon Friend Check

This extension shows 'Following' if you've already followed a remote Mastodon web profile.

Mastodon Friend Check क्या है?

Mastodon Friend Check https://developing.today द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension shows 'Following' if you've already followed a remote Mastodon web profile."।

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

screenshot
screenshot
screenshot

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

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

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

                        This will let you click it to jump between original page and your mastodon instance's version of the page.

Features:
- If following, follow button lists following.
- Otherwise, fixes follow button to remote follow
- Toggle/Jump Between Local Mastodon Page & Original Mastodon page
  - extension menu clickable action
  - context menu clickable button
  - hotkey (default: alt+j for jump)
  - optional auto-Jump
    - by status or account
    - when local or remote
- https://src.developing.today/MastodonFriendCheck/issues/new
- https://hachyderm.io/@dezren39
- [email protected]
- 7152550552

In-Progress Features:
- Bug Fixes
- Copy Paste Prompt Triggers Auto-Jump

2023 Changelog:
January:  Allow Toggling Between Instances. Fix following button.

2017 Changelog:
June: New errors messaging. 'Enter' submits textbox. Following count now displays in popup. Instance name alone now also works. Fixed CSS/HTML for changing 'Follow' to 'Following', improved method of obtaining following list.
April: At some point CSS changed to 'next' instead of 'next_page' fixed that and a couple other things.                    

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

नाम Mastodon Friend Check Mastodon Friend Check
ID komooichefkcbdhhhicpplicceldpcmn
आधिकारिक URL https://chromewebstore.google.com/detail/mastodon-friend-check/komooichefkcbdhhhicpplicceldpcmn
विवरण This extension shows 'Following' if you've already followed a remote Mastodon web profile.
फ़ाइल का आकार 31.4 KB
स्थापना संख्या 39
वर्तमान संस्करण 1.4.0
अंतिम अपडेट 2023-02-05
प्रकाशन तिथि 2017-06-02
डेवलपर https://developing.today
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://src.developing.today/MastodonFriendCheck
सहायता पृष्ठ URL https://src.developing.today/MastodonFriendCheck/issues
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "1.4.0",
    "name": "Mastodon Friend Check",
    "description": "This extension shows 'Following' if you've already followed a remote Mastodon web profile.",
    "homepage_url": "https:\/\/src.developing.today\/MastodonFriendCheck",
    "permissions": [
        "activeTab",
        "alarms",
        "scripting",
        "storage",
        "contextMenus"
    ],
    "optional_host_permissions": [
        "https:\/\/*\/*"
    ],
    "action": {
        "default_icon": "res\/icon.png",
        "default_title": "Toggle Mastodon Page\n\ud83d\udc18 \ud83d\udc18 Jump Now  \ud83d\udc18"
    },
    "background": {
        "service_worker": "src\/background.js",
        "type": "module"
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Alt+J"
            },
            "description": "Toggle\/Jump Mastodon Page"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/@*",
                "*:\/\/*\/users\/*",
                "*:\/\/*\/channel\/*",
                "*:\/\/*\/notices\/*",
                "*:\/\/*\/notes\/*",
                "*:\/\/*\/i\/web\/post\/*",
                "*:\/\/*\/i\/web\/profile\/*",
                "*:\/\/*\/web\/statuses\/*"
            ],
            "js": [
                "src\/content.js"
            ],
            "runAt": "document_start"
        }
    ],
    "options_ui": {
        "page": "src\/options.html"
    },
    "icons": {
        "16": "res\/icon16.png",
        "128": "res\/icon128.png"
    }
}