Pin Tweet to IPFS

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

Vad är Pin Tweet to IPFS?

Pin Tweet to IPFS är en Chrome-tillägg utvecklad av David Justice, och dess huvudfunktion är "An extension to help you pin tweets to IPFS, allowing users to store tweets for archival purposes.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner Pin Tweet to IPFS-förlängningens CRX-fil

Ladda ner Pin Tweet to IPFS-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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/                    

Grundläggande Information om Tillägg

Namn Pin Tweet to IPFS Pin Tweet to IPFS
ID bkbejdaeamaehgpodkjdbkhkofpijagn
Officiell webbadress https://chromewebstore.google.com/detail/pin-tweet-to-ipfs/bkbejdaeamaehgpodkjdbkhkofpijagn
Beskrivning An extension to help you pin tweets to IPFS, allowing users to store tweets for archival purposes.
Filstorlek 110 KB
Antal Installationer 122
Aktuell Version 5.0.5
Senast Uppdaterad 2023-11-07
Publiceringsdatum 2022-10-26
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare David Justice
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/meandavejustice/pin-tweet-to-ipfs
Hjälpsida URL https://github.com/meandavejustice/pin-tweet-to-ipfs/issues
URL till Sekretesspolicy Sidan https://discuss.ipfs.tech/privacy
Stödda Språk 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"
}