Pin Tweet to IPFS

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

Was ist Pin Tweet to IPFS?

Pin Tweet to IPFS ist eine Chrome-Erweiterung, die von David Justice entwickelt wurde, und ihr Hauptmerkmal ist "An extension to help you pin tweets to IPFS, allowing users to store tweets for archival purposes.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Pin Tweet to IPFS-Erweiterungs-CRX-Datei herunterladen

Laden Sie Pin Tweet to IPFS-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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/                    

Grundlegende Informationen zur Erweiterung

Name Pin Tweet to IPFS Pin Tweet to IPFS
ID bkbejdaeamaehgpodkjdbkhkofpijagn
Offizielle URL https://chromewebstore.google.com/detail/pin-tweet-to-ipfs/bkbejdaeamaehgpodkjdbkhkofpijagn
Beschreibung An extension to help you pin tweets to IPFS, allowing users to store tweets for archival purposes.
Dateigröße 110 KB
Installationsanzahl 122
Aktuelle Version 5.0.5
Letztes Update 2023-11-07
Veröffentlichungsdatum 2022-10-26
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler David Justice
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/meandavejustice/pin-tweet-to-ipfs
Hilfeseite URL https://github.com/meandavejustice/pin-tweet-to-ipfs/issues
URL der Datenschutzrichtlinien-Seite https://discuss.ipfs.tech/privacy
Unterstützte Sprachen 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"
}