Mastodon Handles in Twitter
A helper to find people on Twitter that use Mastodon.
Что такое Mastodon Handles in Twitter?
Mastodon Handles in Twitter - это расширение Chrome, разработанное Lennard Scheibel, и его основная функция - "A helper to find people on Twitter that use Mastodon.".
Снимки экрана расширения
Скачать файл CRX расширения Mastodon Handles in Twitter
Скачайте файлы расширений Mastodon Handles in Twitter в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension adds a little mastodon icon next to users that mention their mastodon handle in their bio. Simply click the icon to go to their mastodon account. Основная информация о расширении
| Название | |
| ID | ncgejfiheecflhpoifeembagnjgigioi |
| Официальный URL | https://chromewebstore.google.com/detail/mastodon-handles-in-twitt/ncgejfiheecflhpoifeembagnjgigioi |
| Описание | A helper to find people on Twitter that use Mastodon. |
| Размер файла | 11.34 KB |
| Количество установок | 130 |
| Текущая Версия | 1.2.1 |
| Последнее Обновление | 2023-12-02 |
| Дата публикации | 2022-11-15 |
| Рейтинг | 4.00/5 Всего 3 оценок |
| Разработчик | Lennard Scheibel |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/lscheibel/mastodon-handles-in-twitter |
| URL страницы помощи | https://github.com/lscheibel/mastodon-handles-in-twitter/issues |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Mastodon Handles in Twitter",
"description": "A helper to find people on Twitter that use Mastodon.",
"version": "1.2.1",
"manifest_version": 3,
"permissions": [
"https:\/\/*.twitter.com\/*",
"scripting"
],
"host_permissions": [
"https:\/\/*.twitter.com\/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.twitter.com\/*"
],
"css": [
"styles.css"
]
}
],
"action": {
"default_icon": "icon.png"
}
} | |