Mastodon Redirector
Redirect Mastodon URLs from other instances to your own instance.
Τι είναι το Mastodon Redirector;
Το Mastodon Redirector είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Bramus Van Damme, και η κύρια λειτουργία του είναι "Redirect Mastodon URLs from other instances to your own instance.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Mastodon Redirector
Λήψη αρχείων επέκτασης Mastodon Redirector σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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 |
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 } } |