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
官方網址 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 次評分
開發者 あるかっぱ/アルパカ本家
電子郵箱 [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\/"
}