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
官方網址 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
電子郵箱 [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"
}