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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
}