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
电子邮箱 [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"
}