Share to Mastodon

Share links to Mastodon in one click

Share to Mastodonคืออะไร?

Share to Mastodon เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Corbin Davenport และคุณลักษณะหลักของมันคือ "Share links to Mastodon in one click"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Share to Mastodon

ดาวน์โหลดไฟล์ส่วนขยาย Share to Mastodon ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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 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"
    }
}