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."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ 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                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ FediAct FediAct
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"
    }
}