Mastodon Redirector

Redirect Mastodon URLs from other instances to your own instance.

Mastodon Redirector क्या है?

Mastodon Redirector Bramus Van Damme द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Redirect Mastodon URLs from other instances to your own instance."।

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

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

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

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

                        One thing that’s a bit of a hassle with Mastodon is that you can’t immediately follow people on other instances: you have to copy the username and search for it on the instance that hosts your account. Same story with favoriting and boosting their posts, when viewed on their instance’s URL.

To make this easier, this extension exists. Press the button, and you’ll be taken to the same account or status update you were viewing, but served on the Masto instance your account is on.                    

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

नाम Mastodon Redirector Mastodon Redirector
ID limifnkopacddgpihodacjeckfkpbfoe
आधिकारिक URL https://chromewebstore.google.com/detail/mastodon-redirector/limifnkopacddgpihodacjeckfkpbfoe
विवरण Redirect Mastodon URLs from other instances to your own instance.
फ़ाइल का आकार 12.32 KB
स्थापना संख्या 762
वर्तमान संस्करण 0.4.0
अंतिम अपडेट 2023-09-09
प्रकाशन तिथि 2022-11-23
रेटिंग 3.33/5 कुल 6 रेटिंग्स
डेवलपर Bramus Van Damme
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/bramus/mastodon-redirector
सहायता पृष्ठ URL https://github.com/bramus/mastodon-redirector/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Mastodon Redirector",
    "action": [],
    "manifest_version": 3,
    "version": "0.4.0",
    "description": "Redirect Mastodon URLs from other instances to your own instance.",
    "permissions": [
        "activeTab",
        "scripting",
        "storage"
    ],
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "64": "images\/icon-64.png",
        "128": "images\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "windows": "Alt+Shift+M",
                "mac": "Alt+Shift+M",
                "chromeos": "Alt+Shift+M",
                "linux": "Alt+Shift+M"
            }
        }
    },
    "options_ui": {
        "page": "options\/options.html",
        "browser_style": false,
        "open_in_tab": true
    }
}