Mastodon4 Redirect

Redirects users from Mastodon4 supported instances to their home instance

Mastodon4 Redirect란 무엇입니까?

Mastodon4 Redirect은(는) Mikroni.fi에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Redirects users from Mastodon4 supported instances to their home instance"입니다.

확장 프로그램 스크린샷

screenshot

Mastodon4 Redirect 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Redirects you from other Mastodon instances to your own instances equilevant page, so you don't have to manually go to your instance and paste the URL in the search bar.                    

확장 프로그램 기본 정보

이름 Mastodon4 Redirect Mastodon4 Redirect
ID acbfckpoogjdigldffcbldijhgnjpfnc
공식 URL https://chromewebstore.google.com/detail/mastodon4-redirect/acbfckpoogjdigldffcbldijhgnjpfnc
설명 Redirects users from Mastodon4 supported instances to their home instance
파일 크기 18.97 KB
설치 횟수 119
현재 버전 1.4
최근 업데이트 2022-11-25
출시 날짜 2022-11-17
평점 5.00/5 총 1 개의 평점
개발자 Mikroni.fi
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/raikasdev/mastodon4-redirect
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Mastodon4 Redirect",
    "version": "1.4",
    "description": "Redirects users from Mastodon4 supported instances to their home instance",
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "author": "raikasdev",
    "action": {
        "default_popup": "src\/popup.html"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "m4redirect.js"
            ]
        }
    ],
    "options_ui": {
        "page": "src\/options.html"
    },
    "background": {
        "service_worker": "src\/background.js"
    }
}