Pin Tweet to IPFS

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

Pin Tweet to IPFSとは何ですか?

Pin Tweet to IPFSはDavid Justiceによって開発されたChromeの拡張機能で、その主な機能は「An extension to help you pin tweets to IPFS, allowing users to store tweets for archival purposes.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

Pin Tweet to IPFS拡張機能のCRXファイルをダウンロード

Pin Tweet to IPFS拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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/                    

拡張機能の基本情報

名前 Pin Tweet to IPFS Pin Tweet to IPFS
ID bkbejdaeamaehgpodkjdbkhkofpijagn
公式URL https://chromewebstore.google.com/detail/pin-tweet-to-ipfs/bkbejdaeamaehgpodkjdbkhkofpijagn
説明 An extension to help you pin tweets to IPFS, allowing users to store tweets for archival purposes.
ファイルサイズ 110 KB
インストール数 122
現在のバージョン 5.0.5
最終更新日 2023-11-07
公開日 2022-10-26
評価 5.00/5 合計 1 レビュー
開発者 David Justice
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/meandavejustice/pin-tweet-to-ipfs
ヘルプページのURL https://github.com/meandavejustice/pin-tweet-to-ipfs/issues
プライバシーポリシーページのURL https://discuss.ipfs.tech/privacy
対応言語 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"
}