Mastodon Friend Check
This extension shows 'Following' if you've already followed a remote Mastodon web profile.
Mastodon Friend Check란 무엇입니까?
Mastodon Friend Check은(는) https://developing.today에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension shows 'Following' if you've already followed a remote Mastodon web profile."입니다.
확장 프로그램 스크린샷
Mastodon Friend Check 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This will let you click it to jump between original page and your mastodon instance's version of the page. Features: - If following, follow button lists following. - Otherwise, fixes follow button to remote follow - Toggle/Jump Between Local Mastodon Page & Original Mastodon page - extension menu clickable action - context menu clickable button - hotkey (default: alt+j for jump) - optional auto-Jump - by status or account - when local or remote - https://src.developing.today/MastodonFriendCheck/issues/new - https://hachyderm.io/@dezren39 - [email protected] - 7152550552 In-Progress Features: - Bug Fixes - Copy Paste Prompt Triggers Auto-Jump 2023 Changelog: January: Allow Toggling Between Instances. Fix following button. 2017 Changelog: June: New errors messaging. 'Enter' submits textbox. Following count now displays in popup. Instance name alone now also works. Fixed CSS/HTML for changing 'Follow' to 'Following', improved method of obtaining following list. April: At some point CSS changed to 'next' instead of 'next_page' fixed that and a couple other things.
확장 프로그램 기본 정보
이름 | Mastodon Friend Check |
ID | komooichefkcbdhhhicpplicceldpcmn |
공식 URL | https://chromewebstore.google.com/detail/mastodon-friend-check/komooichefkcbdhhhicpplicceldpcmn |
설명 | This extension shows 'Following' if you've already followed a remote Mastodon web profile. |
파일 크기 | 31.4 KB |
설치 횟수 | 39 |
현재 버전 | 1.4.0 |
최근 업데이트 | 2023-02-05 |
출시 날짜 | 2017-06-02 |
개발자 | https://developing.today |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://src.developing.today/MastodonFriendCheck |
도움말 페이지 URL | https://src.developing.today/MastodonFriendCheck/issues |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "version": "1.4.0", "name": "Mastodon Friend Check", "description": "This extension shows 'Following' if you've already followed a remote Mastodon web profile.", "homepage_url": "https:\/\/src.developing.today\/MastodonFriendCheck", "permissions": [ "activeTab", "alarms", "scripting", "storage", "contextMenus" ], "optional_host_permissions": [ "https:\/\/*\/*" ], "action": { "default_icon": "res\/icon.png", "default_title": "Toggle Mastodon Page\n\ud83d\udc18 \ud83d\udc18 Jump Now \ud83d\udc18" }, "background": { "service_worker": "src\/background.js", "type": "module" }, "commands": { "_execute_action": { "suggested_key": { "default": "Alt+J" }, "description": "Toggle\/Jump Mastodon Page" } }, "content_scripts": [ { "matches": [ "*:\/\/*\/@*", "*:\/\/*\/users\/*", "*:\/\/*\/channel\/*", "*:\/\/*\/notices\/*", "*:\/\/*\/notes\/*", "*:\/\/*\/i\/web\/post\/*", "*:\/\/*\/i\/web\/profile\/*", "*:\/\/*\/web\/statuses\/*" ], "js": [ "src\/content.js" ], "runAt": "document_start" } ], "options_ui": { "page": "src\/options.html" }, "icons": { "16": "res\/icon16.png", "128": "res\/icon128.png" } } |