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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย David Justice และคุณลักษณะหลักของมันคือ "An extension to help you pin tweets to IPFS, allowing users to store tweets for archival purposes."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Pin Tweet to IPFS

ดาวน์โหลดไฟล์ส่วนขยาย 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"
}