Mastodon4 Redirect
Redirects users from Mastodon4 supported instances to their home instance
Что такое Mastodon4 Redirect?
Mastodon4 Redirect - это расширение Chrome, разработанное Mikroni.fi, и его основная функция - "Redirects users from Mastodon4 supported instances to their home instance".
Снимки экрана расширения
Скачать файл CRX расширения Mastodon4 Redirect
Скачайте файлы расширений Mastodon4 Redirect в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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" } } |