Twishare to Misskey

Allow users to share to Misskey from Twitter share button.

Twishare to Misskeyとは何ですか?

Twishare to Misskeyはあるかっぱ/アルパカ本家によって開発されたChromeの拡張機能で、その主な機能は「Allow users to share to Misskey from Twitter share button.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

Twishare to Misskey拡張機能のCRXファイルをダウンロード

Twishare to Misskey拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        There are many websites out there that have share buttons for Twitter, Facebook, LINE, and so on. However, Misskey users may be thinking, "Why can't I share to Misskey with those buttons? You may be thinking, "But that doesn't mean I can't share to Misskey!
With this extension, you can share to Misskey using Twitter's share button!

Features:
When you press the Share button on Twitter, a confirmation screen will appear and you can choose whether you want to share to Misskey or not.
 Of course, you can also share to Twitter if you cancel.
If you don't have a Twitter share button, you can share to Misskey from the share button on the bottom right.
 You can move it away from the screen.
 You can hide it.
There is also a share button on the popup screen in the upper right corner (currently only in Chrome).
Almost all Misskey (v12 or later) and Firefish (formerly Calckey) are supported.
When you share a tweet, the content of the tweet can be pasted into the note as a quote.
Share after removing unnecessary information attached to URLs on certain sites.
 YouTube: Remove IDs that may be involved in tracking.
 Twitter: Remove the numbers that are given when generating share links, which may indicate the type of device.
Twitter: Removed numbers that might imply the type of device used to generate share links.
Bookmarklet with the same functionality as some of the extensions is distributed.


Usage:
1. go to chrome://extensions and grant various permissions. (First time only) 2.
Click the Twishare to Misskey for Firefox icon from the list of extensions in the upper left corner, and enter the server to which you want to share the bookmarklet. (Enter the server you want to share to. (If you are sharing to Misskey.io and after the second time, you do not need to do this.) (This is not necessary if you are sharing to Misskey.io, or if you are sharing a second time.) Also, select the toggle switch below the icon. 3.
When you click the "Share to Twitter" button and go to the next page, you will be asked if you want to share to Misskey.
If you turned on the toggle switch in step 2, a green button will appear in the lower right corner of the screen. Pressing this will allow you to share pages that do not have a Twitter share button.

FAQ: https://github.com/alpaca-honke/twishare-to-misskey/wiki/よくある質問

Repository: https://github.com/alpaca-honke/twishare-to-misskey
Please use the contact information listed in the URL above to ask questions or report problems.

Privacy Policy: https://alpaca-honke.github.io/twishare-to-misskey/privacy.html

This extension is distributed under MIT LICENSE.                    

拡張機能の基本情報

名前 Twishare to Misskey Twishare to Misskey
ID fbaifpppndnlbbjcbjdfgbdkoibnipjb
公式URL https://chromewebstore.google.com/detail/twishare-to-misskey/fbaifpppndnlbbjcbjdfgbdkoibnipjb
説明 Allow users to share to Misskey from Twitter share button.
ファイルサイズ 70.86 KB
インストール数 617
現在のバージョン 0.4.0
最終更新日 2023-09-30
公開日 2023-05-03
評価 4.50/5 合計 4 レビュー
開発者 あるかっぱ/アルパカ本家
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/alpaca-honke/twishare-to-misskey
対応言語 en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "default_locale": "en",
    "name": "Twishare to Misskey",
    "version": "0.4.0",
    "description": "__MSG_Description__",
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/twitter.com\/intent\/tweet*",
                "http:\/\/twitter.com\/intent\/tweet*"
            ],
            "js": [
                "js_and_css\/on_twitter_intent.js"
            ]
        },
        {
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "js": [
                "js_and_css\/allpages.js"
            ],
            "css": [
                "js_and_css\/allpages.css"
            ]
        }
    ],
    "background": {
        "service_worker": "js_and_css\/background.js"
    },
    "action": {
        "default_icon": {
            "16": "icons\/16.png",
            "48": "icons\/48.png",
            "128": "icons\/128.png"
        },
        "default_title": "__MSG_PopupTitle__",
        "default_popup": "options\/options.html"
    },
    "options_ui": {
        "page": "options\/options.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/share.png"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "author": "Alkappa\/alpaca-honke",
    "homepage_url": "https:\/\/github.com\/alpaca-honke\/twishare-to-misskey\/"
}