Mastodon4 Redirect
Redirects users from Mastodon4 supported instances to their home instance
Mastodon4 Redirect क्या है?
Mastodon4 Redirect Mikroni.fi द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Redirects users from Mastodon4 supported instances to their home instance"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Mastodon4 Redirect एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Redirects you from other Mastodon instances to your own instances equilevant page, so you don't have to manually go to your instance and paste the URL in the search bar.
एक्सटेंशन की मूल जानकारी
नाम | Mastodon4 Redirect |
ID | acbfckpoogjdigldffcbldijhgnjpfnc |
आधिकारिक URL | https://chromewebstore.google.com/detail/mastodon4-redirect/acbfckpoogjdigldffcbldijhgnjpfnc |
विवरण | Redirects users from Mastodon4 supported instances to their home instance |
फ़ाइल का आकार | 18.97 KB |
स्थापना संख्या | 119 |
वर्तमान संस्करण | 1.4 |
अंतिम अपडेट | 2022-11-25 |
प्रकाशन तिथि | 2022-11-17 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | Mikroni.fi |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/raikasdev/mastodon4-redirect |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Mastodon4 Redirect", "version": "1.4", "description": "Redirects users from Mastodon4 supported instances to their home instance", "icons": { "16": "icon-16.png", "32": "icon-32.png", "48": "icon-48.png", "128": "icon-128.png" }, "author": "raikasdev", "action": { "default_popup": "src\/popup.html" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "m4redirect.js" ] } ], "options_ui": { "page": "src\/options.html" }, "background": { "service_worker": "src\/background.js" } } |