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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
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" } } |