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

تحميل ملف CRX للإضافة Twishare to Misskey

قم بتنزيل ملفات الامتداد Twishare to Misskey بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
المطور あるかっぱ/アルパカ本家
البريد الإلكتروني [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\/"
}