Twishare to Misskey

Allow users to share to Misskey from Twitter share button.

Apa itu Twishare to Misskey?

Twishare to Misskey adalah ekstensi Chrome yang dikembangkan oleh あるかっぱ/アルパカ本家, dan fitur utamanya adalah "Allow users to share to Misskey from Twitter share button.".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Twishare to Misskey

Unduh file ekstensi Twishare to Misskey dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Twishare to Misskey Twishare to Misskey
ID fbaifpppndnlbbjcbjdfgbdkoibnipjb
URL Resmi https://chromewebstore.google.com/detail/twishare-to-misskey/fbaifpppndnlbbjcbjdfgbdkoibnipjb
Deskripsi Allow users to share to Misskey from Twitter share button.
Ukuran File 70.86 KB
Jumlah Instalasi 617
Versi Saat Ini 0.4.0
Terakhir Diperbarui 2023-09-30
Tanggal Publikasi 2023-05-03
Penilaian 4.50/5 Total 4 Penilaian
Pengembang あるかっぱ/アルパカ本家
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/alpaca-honke/twishare-to-misskey
Bahasa yang Didukung 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\/"
}