Mastodon Redirector

Redirect Mastodon URLs from other instances to your own instance.

Mastodon Redirector란 무엇입니까?

Mastodon Redirector은(는) Bramus Van Damme에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Redirect Mastodon URLs from other instances to your own instance."입니다.

확장 프로그램 스크린샷

Mastodon Redirector 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        One thing that’s a bit of a hassle with Mastodon is that you can’t immediately follow people on other instances: you have to copy the username and search for it on the instance that hosts your account. Same story with favoriting and boosting their posts, when viewed on their instance’s URL.

To make this easier, this extension exists. Press the button, and you’ll be taken to the same account or status update you were viewing, but served on the Masto instance your account is on.                    

확장 프로그램 기본 정보

이름 Mastodon Redirector Mastodon Redirector
ID limifnkopacddgpihodacjeckfkpbfoe
공식 URL https://chromewebstore.google.com/detail/mastodon-redirector/limifnkopacddgpihodacjeckfkpbfoe
설명 Redirect Mastodon URLs from other instances to your own instance.
파일 크기 12.32 KB
설치 횟수 762
현재 버전 0.4.0
최근 업데이트 2023-09-09
출시 날짜 2022-11-23
평점 3.33/5 총 6 개의 평점
개발자 Bramus Van Damme
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/bramus/mastodon-redirector
도움말 페이지 URL https://github.com/bramus/mastodon-redirector/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Mastodon Redirector",
    "action": [],
    "manifest_version": 3,
    "version": "0.4.0",
    "description": "Redirect Mastodon URLs from other instances to your own instance.",
    "permissions": [
        "activeTab",
        "scripting",
        "storage"
    ],
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "64": "images\/icon-64.png",
        "128": "images\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "windows": "Alt+Shift+M",
                "mac": "Alt+Shift+M",
                "chromeos": "Alt+Shift+M",
                "linux": "Alt+Shift+M"
            }
        }
    },
    "options_ui": {
        "page": "options\/options.html",
        "browser_style": false,
        "open_in_tab": true
    }
}