Mastodon Redirector
Redirect Mastodon URLs from other instances to your own instance.
¿Qué es Mastodon Redirector?
Mastodon Redirector es una extensión de Chrome desarrollada por Bramus Van Damme, y su función principal es "Redirect Mastodon URLs from other instances to your own instance.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Mastodon Redirector
Descarga archivos de extensión Mastodon Redirector en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Mastodon Redirector |
ID | limifnkopacddgpihodacjeckfkpbfoe |
URL Oficial | https://chromewebstore.google.com/detail/mastodon-redirector/limifnkopacddgpihodacjeckfkpbfoe |
Descripción | Redirect Mastodon URLs from other instances to your own instance. |
Tamaño del Archivo | 12.32 KB |
Cantidad de Instalaciones | 762 |
Versión Actual | 0.4.0 |
Última Actualización | 2023-09-09 |
Fecha de Publicación | 2022-11-23 |
Calificación | 3.33/5 Total de 6 Calificaciones |
Desarrollador | Bramus Van Damme |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/bramus/mastodon-redirector |
URL de la Página de Ayuda | https://github.com/bramus/mastodon-redirector/issues |
Idiomas Soportados | 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 } } |