Pin Tweet to IPFS

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

What is Pin Tweet to IPFS?

Pin Tweet to IPFS is a Chrome extension developed by David Justice, and its main feature is "An extension to help you pin tweets to IPFS, allowing users to store tweets for archival purposes.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Pin Tweet to IPFS Extension CRX File

Download Pin Tweet to IPFS extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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/                    

Extension Basic Information

Name Pin Tweet to IPFS Pin Tweet to IPFS
ID bkbejdaeamaehgpodkjdbkhkofpijagn
Official URL 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.
File Size 110 KB
Installation Count 122
Current Version 5.0.5
Last Updated 2023-11-07
Publish Date 2022-10-26
Rating 5.00/5 Total 1 Ratings
Developer David Justice
Email [email protected]
Payment Type free
Extension Website https://github.com/meandavejustice/pin-tweet-to-ipfs
Help Page URL https://github.com/meandavejustice/pin-tweet-to-ipfs/issues
Privacy Policy Page URL https://discuss.ipfs.tech/privacy
Supported Languages 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"
}