FediAct
Simplifies interactions on other Mastodon instances than your own. Visit https://github.com/lartsch/FediAct for more.
Cos'è FediAct?
FediAct è un'estensione di Chrome sviluppata da @[email protected], e la sua funzione principale è "Simplifies interactions on other Mastodon instances than your own. Visit https://github.com/lartsch/FediAct for more.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione FediAct
Scarica i file di estensione FediAct in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | FediAct |
ID | lmpcajpkjcclkjbliapfjfolocffednm |
URL Ufficiale | https://chromewebstore.google.com/detail/fediact/lmpcajpkjcclkjbliapfjfolocffednm |
Descrizione | Simplifies interactions on other Mastodon instances than your own. Visit https://github.com/lartsch/FediAct for more. |
Dimensione del File | 56.38 KB |
Conteggio Installazioni | 1,881 |
Versione Corrente | 0.9.8.7 |
Ultimo Aggiornamento | 2022-12-31 |
Data di Pubblicazione | 2022-11-23 |
Valutazione | 4.90/5 Totale 10 Valutazioni |
Sviluppatore | @[email protected] |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/lartsch/FediAct |
URL della Pagina di Aiuto | https://github.com/lartsch/FediAct/issues |
Lingue Supportate | 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" } } |