Mastodon Chirper

Add Mastodon posts to your twitter.com home timeline feed

Mastodon Chirper란 무엇입니까?

Mastodon Chirper은(는) Dominik Picheta에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add Mastodon posts to your twitter.com home timeline feed"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Mastodon Chirper is a browser extension which integrates the Mastodon social network with the twitter.com UI.

All you need to do is login to your Mastodon account and the extension will automatically inject posts from your Mastodon timeline into twitter.com. This means that whenever you navigate to https://twitter.com/, you will see tweets as well as Mastodon toots.

The extension can be easily disabled at any time by clicking the Chirper icon in the top bar. This will stop the extension from injecting toots into twitter.com. You will always be able to re-enable the extension by clicking the Chirper icon again.

This extension supports all Mastodon instances. If you run into any issues, please feel free to get in touch via the "About" link in the Chirper popup.

This project is not affiliated with the Mastodon project, Mastodon gGmbH nor is it affiliated with Twitter.                    

확장 프로그램 기본 정보

이름 Mastodon Chirper Mastodon Chirper
ID lgiffpmohlpjlkclpmelkkfmjnlpafne
공식 URL https://chromewebstore.google.com/detail/mastodon-chirper/lgiffpmohlpjlkclpmelkkfmjnlpafne
설명 Add Mastodon posts to your twitter.com home timeline feed
파일 크기 894 KB
설치 횟수 127
현재 버전 1.4.2
최근 업데이트 2023-05-28
출시 날짜 2023-01-04
개발자 Dominik Picheta
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://chirper.picheta.me
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Mastodon Chirper",
    "version": "1.4.2",
    "description": "Add Mastodon posts to your twitter.com home timeline feed",
    "icons": {
        "16": "images\/logo-green-16.png",
        "32": "images\/logo-green-32.png",
        "48": "images\/logo-green-48.png",
        "128": "images\/logo-green-128.png"
    },
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApzLPt5QtL1XkEWTwuzOSXzjdXz1ehYlKKBRbW6ps8Fp1aszsEJyLvSMwiFxSwvyTSDLrLOkurkkBj9e1UPIgMUSOWYjO4V+s0\/vCsd3JJGlZJ\/sfwxKM9EpxyrpaW0nDZONOwx\/pfKxOFvvyuqOxSUa4y3zM5EZrdVnUDeyq0WzrBFvUaPJi9XP4y0IpfegKc\/rx4uFDOAncvSqTVIoyCYacGvZ7Tz06bOar9Jcv5iiAXtBZG21yecQXl+bWihAjKY1CJuDqlcDr6CGZnofGjngI0DsticY6yg1RIBkGtFuOjxBEDKdG1njHGTAot+xMkFnH3jy0j4ATnEliLDXIGwIDAQAB",
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "*:\/\/twitter.com\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "xhr_capture.js",
                "rewriter.js"
            ],
            "matches": [
                ""
            ],
            "extension_ids": [
                "lgiffpmohlpjlkclpmelkkfmjnlpafne"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "identity",
        "storage",
        "unlimitedStorage"
    ],
    "host_permissions": [
        "*:\/\/twitter.com\/*"
    ],
    "optional_host_permissions": [
        "*:\/\/*\/*"
    ],
    "action": {
        "default_popup": "chirper.html"
    }
}