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 là gì?

Pin Tweet to IPFS là một tiện ích mở rộng Chrome được phát triển bởi David Justice, và tính năng chính của nó là "An extension to help you pin tweets to IPFS, allowing users to store tweets for archival purposes.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Pin Tweet to IPFS

Tải xuống các tệp mở rộng Pin Tweet to IPFS dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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/                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Pin Tweet to IPFS Pin Tweet to IPFS
ID bkbejdaeamaehgpodkjdbkhkofpijagn
URL Chính Thức https://chromewebstore.google.com/detail/pin-tweet-to-ipfs/bkbejdaeamaehgpodkjdbkhkofpijagn
Mô tả An extension to help you pin tweets to IPFS, allowing users to store tweets for archival purposes.
Kích Thước Tệp 110 KB
Số Lần Cài Đặt 122
Phiên Bản Hiện Tại 5.0.5
Cập Nhật Lần Cuối 2023-11-07
Ngày Phát Hành 2022-10-26
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển David Justice
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/meandavejustice/pin-tweet-to-ipfs
URL Trang Trợ Giúp https://github.com/meandavejustice/pin-tweet-to-ipfs/issues
URL Trang Chính Sách Bảo Mật https://discuss.ipfs.tech/privacy
Ngôn Ngữ Được Hỗ Trợ 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"
}