Mastodon Link

Extension to make it easy to visit mastodon profiles from your instance

Mastodon Link là gì?

Mastodon Link là một tiện ích mở rộng Chrome được phát triển bởi masrly, và tính năng chính của nó là "Extension to make it easy to visit mastodon profiles from your instance".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Mastodon Link

Tải xuống các tệp mở rộng Mastodon Link dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Adds a clickable mastodon icon next to mastodon style usernames (@[email protected]) that directs you to your own mastodon instance for ease of following.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Mastodon Link Mastodon Link
ID nlfdgcdfjnobjocicnddjghdbmgglame
URL Chính Thức https://chromewebstore.google.com/detail/mastodon-link/nlfdgcdfjnobjocicnddjghdbmgglame
Mô tả Extension to make it easy to visit mastodon profiles from your instance
Kích Thước Tệp 20.41 KB
Số Lần Cài Đặt 544
Phiên Bản Hiện Tại 1.2.1
Cập Nhật Lần Cuối 2022-11-28
Ngày Phát Hành 2022-11-23
Đánh Giá 4.75/5 Tổng số 4 Đánh Giá
Nhà Phát Triển masrly
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/masrly/mastodon-link
URL Trang Trợ Giúp https://github.com/masrly/mastodon-link
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Mastodon Link",
    "version": "1.2.1",
    "author": "Alexander Haslam <@[email protected]>",
    "manifest_version": 3,
    "description": "Extension to make it easy to visit mastodon profiles from your instance",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    }
}