Pin Tweet to IPFS

An extension to help you pin tweets to IPFS, allowing users to store tweets for archival purposes.

ما هو Pin Tweet to IPFS؟

Pin Tweet to IPFS هو إضافة Chrome تم تطويرها بواسطة David Justice، والميزة الرئيسية لها هي "An extension to help you pin tweets to IPFS, allowing users to store tweets for archival purposes.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Pin Tweet to IPFS

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

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

                        Archive tweets to IPFS. The extensions assists users in creating a WebARChive file and uploads to web3.storage so it can be accessed over IPFS without the user installing and setting up a local instance of Kubo.

Heavily utilizes a tool built by WebRecorder to archive tweets specifically, https://webrecorder.github.io/save-tweet-now/                    

معلومات أساسية عن التمديد

الاسم Pin Tweet to IPFS Pin Tweet to IPFS
ID bkbejdaeamaehgpodkjdbkhkofpijagn
عنوان URL الرسمي https://chromewebstore.google.com/detail/pin-tweet-to-ipfs/bkbejdaeamaehgpodkjdbkhkofpijagn
الوصف An extension to help you pin tweets to IPFS, allowing users to store tweets for archival purposes.
حجم الملف 110 KB
عدد التثبيتات 122
النسخة الحالية 5.0.5
آخر تحديث 2023-11-07
تاريخ النشر 2022-10-26
تقييم 5.00/5 مجموع تقييمات 1
المطور David Justice
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/meandavejustice/pin-tweet-to-ipfs
عنوان صفحة المساعدة https://github.com/meandavejustice/pin-tweet-to-ipfs/issues
عنوان صفحة سياسة الخصوصية https://discuss.ipfs.tech/privacy
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Pin Tweet to IPFS",
    "description": "An extension to help you pin tweets to IPFS, allowing users to store tweets for archival purposes.",
    "permissions": [
        "tabs",
        "storage",
        "scripting",
        "contextMenus"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        ""
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Pin Tweet to IPFS",
        "default_popup": ".\/Popup\/popup.html",
        "default_icon": "icon-34.png"
    },
    "icons": {
        "16": "icon-16.png",
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.twitter.com\/*",
                "https:\/\/webrecorder.github.io\/save-tweet-now\/"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icon-128.png",
                "icon-34.png"
            ],
            "matches": []
        }
    ],
    "version": "5.0.5"
}