Pin Tweet to IPFS

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

Co to jest Pin Tweet to IPFS?

Pin Tweet to IPFS to rozszerzenie Chrome opracowane przez David Justice, a jego główną funkcją jest „An extension to help you pin tweets to IPFS, allowing users to store tweets for archival purposes.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Pin Tweet to IPFS

Pobierz pliki rozszerzeń Pin Tweet to IPFS w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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/                    

Podstawowe informacje o rozszerzeniu

Nazwa Pin Tweet to IPFS Pin Tweet to IPFS
ID bkbejdaeamaehgpodkjdbkhkofpijagn
Oficjalny URL https://chromewebstore.google.com/detail/pin-tweet-to-ipfs/bkbejdaeamaehgpodkjdbkhkofpijagn
Opis An extension to help you pin tweets to IPFS, allowing users to store tweets for archival purposes.
Rozmiar pliku 110 KB
Liczba instalacji 122
Aktualna Wersja 5.0.5
Ostatnia Aktualizacja 2023-11-07
Data Publikacji 2022-10-26
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper David Justice
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/meandavejustice/pin-tweet-to-ipfs
Adres URL Strony Pomocy https://github.com/meandavejustice/pin-tweet-to-ipfs/issues
Adres URL Strony Polityki Prywatności https://discuss.ipfs.tech/privacy
Obsługiwane Języki 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"
}