Share to Mastodon
Share links to Mastodon in one click
Share to Mastodon란 무엇입니까?
Share to Mastodon은(는) Corbin Davenport에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Share links to Mastodon in one click"입니다.
확장 프로그램 스크린샷
Share to Mastodon 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Share to Mastodon is a browser extension for quickly sharing links and tabs to the Mastodon social network. You can click the Mastodon button in the top bar (or the keyboard shortcut) to share the current tab, or right-click a link on any page. You can also select text and pick Mastodon in the context (right-click) menu to share a snippet. The browser extension can store multiple server options, and synchronize them with your browser's settings. It uses the share dialog hosted by the selected server, so no API access or account permissions are required. Share to Mastodon is compatible with any Mastodon server, as well as platforms that have implemented Mastodon's share URL scheme, such as Calckey and Misskey. It also works with the Elk Mastodon web client. This project is not affiliated with the Mastodon project or Mastodon gGmbH. The code is open-source on GitHub: https://github.com/corbindavenport/share-to-mastodon
확장 프로그램 기본 정보
이름 | Share to Mastodon |
ID | bibnjflclpdmbbcncejifemmbggkcjde |
공식 URL | https://chromewebstore.google.com/detail/share-to-mastodon/bibnjflclpdmbbcncejifemmbggkcjde |
설명 | Share links to Mastodon in one click |
파일 크기 | 195 KB |
설치 횟수 | 1,104 |
현재 버전 | 2.1 |
최근 업데이트 | 2023-07-12 |
출시 날짜 | 2022-12-19 |
평점 | 4.45/5 총 11 개의 평점 |
개발자 | Corbin Davenport |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/corbindavenport/share-to-mastodon |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Share to Mastodon", "version": "2.1", "author": "Corbin Davenport", "homepage_url": "https:\/\/github.com\/corbindavenport\/share-to-mastodon", "description": "Share links to Mastodon in one click", "options_ui": { "page": "settings.html", "open_in_tab": true }, "action": { "default_icon": { "32": "img\/icon_x32.png", "48": "img\/icon_action_x48.png", "128": "img\/icon_action_x128.png" }, "default_title": "Share this page to Mastodon" }, "commands": { "_execute_action": { "suggested_key": "Ctrl+Shift+S", "description": "Share current page on Mastodon" } }, "permissions": [ "contextMenus", "storage", "activeTab" ], "minimum_chrome_version": "93", "background": { "service_worker": "js\/background.js" }, "icons": { "32": "img\/icon_x32.png", "48": "img\/icon_x48.png", "128": "img\/icon_x128.png" } } |