Pin Tweet to IPFS

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

Qu'est-ce que Pin Tweet to IPFS ?

Pin Tweet to IPFS est une extension Chrome développée par David Justice, et sa fonction principale est "An extension to help you pin tweets to IPFS, allowing users to store tweets for archival purposes.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Pin Tweet to IPFS

Téléchargez les fichiers d'extension Pin Tweet to IPFS au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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/                    

Informations de Base sur l'Extension

Nom Pin Tweet to IPFS Pin Tweet to IPFS
ID bkbejdaeamaehgpodkjdbkhkofpijagn
URL Officiel https://chromewebstore.google.com/detail/pin-tweet-to-ipfs/bkbejdaeamaehgpodkjdbkhkofpijagn
Description An extension to help you pin tweets to IPFS, allowing users to store tweets for archival purposes.
Taille du Fichier 110 KB
Nombre d'Installations 122
Version Actuelle 5.0.5
Dernière Mise à Jour 2023-11-07
Date de Publication 2022-10-26
Évaluation 5.00/5 Total 1 Évaluations
Développeur David Justice
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/meandavejustice/pin-tweet-to-ipfs
URL de la Page d'Aide https://github.com/meandavejustice/pin-tweet-to-ipfs/issues
URL de la Page de Politique de Confidentialité https://discuss.ipfs.tech/privacy
Langues Prises en Charge 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"
}