FediAct
Simplifies interactions on other Mastodon instances than your own. Visit https://github.com/lartsch/FediAct for more.
Was ist FediAct?
FediAct ist eine Chrome-Erweiterung, die von @[email protected] entwickelt wurde, und ihr Hauptmerkmal ist "Simplifies interactions on other Mastodon instances than your own. Visit https://github.com/lartsch/FediAct for more.".
Erweiterungsscreenshots
FediAct-Erweiterungs-CRX-Datei herunterladen
Laden Sie FediAct-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
                        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                     Grundlegende Informationen zur Erweiterung
| Name |   |  
| ID | lmpcajpkjcclkjbliapfjfolocffednm | 
| Offizielle URL | https://chromewebstore.google.com/detail/fediact/lmpcajpkjcclkjbliapfjfolocffednm | 
| Beschreibung | Simplifies interactions on other Mastodon instances than your own. Visit https://github.com/lartsch/FediAct for more. | 
| Dateigröße | 56.38 KB | 
| Installationsanzahl | 1,881 | 
| Aktuelle Version | 0.9.8.7 | 
| Letztes Update | 2022-12-31 | 
| Veröffentlichungsdatum | 2022-11-23 | 
| Bewertung | 4.90/5 Insgesamt 10 Bewertungen | 
| Entwickler | @[email protected] | 
| [email protected] | |
| Zahlungsart | free | 
| Erweiterungswebsite | https://github.com/lartsch/FediAct | 
| Hilfeseite URL | https://github.com/lartsch/FediAct/issues | 
| Unterstützte Sprachen | 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"
    }
}  |  |