Pin Tweet to IPFS

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

Co je Pin Tweet to IPFS?

Pin Tweet to IPFS je rozšíření Chrome vyvinuté David Justice, a jeho hlavní funkcí je „An extension to help you pin tweets to IPFS, allowing users to store tweets for archival purposes.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Pin Tweet to IPFS

Stáhněte si soubory rozšíření Pin Tweet to IPFS ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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/                    

Základní Informace o Rozšíření

Název Pin Tweet to IPFS Pin Tweet to IPFS
ID bkbejdaeamaehgpodkjdbkhkofpijagn
Oficiální URL https://chromewebstore.google.com/detail/pin-tweet-to-ipfs/bkbejdaeamaehgpodkjdbkhkofpijagn
Popis An extension to help you pin tweets to IPFS, allowing users to store tweets for archival purposes.
Velikost souboru 110 KB
Počet instalací 122
Aktuální Verze 5.0.5
Poslední Aktualizace 2023-11-07
Datum Vydání 2022-10-26
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář David Justice
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/meandavejustice/pin-tweet-to-ipfs
URL Stránky Nápovědy https://github.com/meandavejustice/pin-tweet-to-ipfs/issues
URL Stránky Zásad Ochrany Soukromí https://discuss.ipfs.tech/privacy
Podporované Jazyky 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"
}