FediAct
Simplifies interactions on other Mastodon instances than your own. Visit https://github.com/lartsch/FediAct for more.
什么是FediAct?
FediAct是由@[email protected]开发的Chrome扩展程序,该扩展的主要功能是“Simplifies interactions on other Mastodon instances than your own. Visit https://github.com/lartsch/FediAct for more.”。
扩展截图
下载FediAct扩展crx文件
下载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"
    }
}  |  |