Pin Tweet to IPFS

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

Cos'è Pin Tweet to IPFS?

Pin Tweet to IPFS è un'estensione di Chrome sviluppata da David Justice, e la sua funzione principale è "An extension to help you pin tweets to IPFS, allowing users to store tweets for archival purposes.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Pin Tweet to IPFS

Scarica i file di estensione Pin Tweet to IPFS in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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/                    

Informazioni di Base sull'Estensione

Nome Pin Tweet to IPFS Pin Tweet to IPFS
ID bkbejdaeamaehgpodkjdbkhkofpijagn
URL Ufficiale https://chromewebstore.google.com/detail/pin-tweet-to-ipfs/bkbejdaeamaehgpodkjdbkhkofpijagn
Descrizione An extension to help you pin tweets to IPFS, allowing users to store tweets for archival purposes.
Dimensione del File 110 KB
Conteggio Installazioni 122
Versione Corrente 5.0.5
Ultimo Aggiornamento 2023-11-07
Data di Pubblicazione 2022-10-26
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore David Justice
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/meandavejustice/pin-tweet-to-ipfs
URL della Pagina di Aiuto https://github.com/meandavejustice/pin-tweet-to-ipfs/issues
URL della Pagina della Politica sulla Privacy https://discuss.ipfs.tech/privacy
Lingue Supportate 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"
}