Twishare to Misskey

Allow users to share to Misskey from Twitter share button.

Wat is Twishare to Misskey?

Twishare to Misskey is een Chrome-extensie ontwikkeld door あるかっぱ/アルパカ本家, en de belangrijkste functie is "Allow users to share to Misskey from Twitter share button.".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Twishare to Misskey

Download Twishare to Misskey-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Twishare to Misskey Twishare to Misskey
ID fbaifpppndnlbbjcbjdfgbdkoibnipjb
Officiële URL https://chromewebstore.google.com/detail/twishare-to-misskey/fbaifpppndnlbbjcbjdfgbdkoibnipjb
Beschrijving Allow users to share to Misskey from Twitter share button.
Bestandsgrootte 70.86 KB
Aantal Installaties 617
Huidige Versie 0.4.0
Laatst Bijgewerkt 2023-09-30
Publicatiedatum 2023-05-03
Beoordeling 4.50/5 Totaal 4 Beoordelingen
Ontwikkelaar あるかっぱ/アルパカ本家
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/alpaca-honke/twishare-to-misskey
Ondersteunde Talen 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\/"
}