FediAct
Simplifies interactions on other Mastodon instances than your own. Visit https://github.com/lartsch/FediAct for more.
Что такое FediAct?
FediAct - это расширение Chrome, разработанное @[email protected], и его основная функция - "Simplifies interactions on other Mastodon instances than your own. Visit https://github.com/lartsch/FediAct for more.".
Снимки экрана расширения
Скачать файл CRX расширения FediAct
Скачайте файлы расширений FediAct в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
A Chrome/Firefox extension that simplifies following and post interactions on other Mastodon instances than your own. All data is processed on your machine locally!
Visit the Github page to read up-to-date information on:
- Supported features
- Setup steps
- Screenshots/GIFs
- Additional usage notes
https://github.com/lartsch/FediAct
If you like this addon, consider donating: https://paypal.me/lartsch Основная информация о расширении
| Название | |
| ID | lmpcajpkjcclkjbliapfjfolocffednm |
| Официальный URL | https://chromewebstore.google.com/detail/fediact/lmpcajpkjcclkjbliapfjfolocffednm |
| Описание | Simplifies interactions on other Mastodon instances than your own. Visit https://github.com/lartsch/FediAct for more. |
| Размер файла | 56.38 KB |
| Количество установок | 1,881 |
| Текущая Версия | 0.9.8.7 |
| Последнее Обновление | 2022-12-31 |
| Дата публикации | 2022-11-23 |
| Рейтинг | 4.90/5 Всего 10 оценок |
| Разработчик | @[email protected] |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/lartsch/FediAct |
| URL страницы помощи | https://github.com/lartsch/FediAct/issues |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "FediAct",
"version": "0.9.8.7",
"description": "Simplifies interactions on other Mastodon instances than your own. Visit https:\/\/github.com\/lartsch\/FediAct for more.",
"manifest_version": 3,
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"src\/lib\/jquery-3.6.1.min.js",
"src\/inject.min.js"
],
"css": [
"src\/content_styles.min.css"
],
"run_at": "document_start"
}
],
"background": {
"service_worker": "src\/background.min.js"
},
"permissions": [
"storage",
"alarms",
"tabs"
],
"host_permissions": [
"https:\/\/*\/*",
"http:\/\/*\/*"
],
"options_ui": {
"page": "src\/popup.html"
},
"action": {
"default_popup": "src\/popup.html",
"default_icon": "src\/icon\/48.png",
"default_title": "FediAct settings"
},
"icons": {
"48": "src\/icon\/48.png"
}
} | |