Pin Tweet to IPFS

An extension to help you pin tweets to IPFS, allowing users to store tweets for archival purposes.

O que é Pin Tweet to IPFS?

Pin Tweet to IPFS é uma extensão do Chrome desenvolvida por David Justice, e sua principal característica é "An extension to help you pin tweets to IPFS, allowing users to store tweets for archival purposes.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Pin Tweet to IPFS

Baixe arquivos de extensão Pin Tweet to IPFS no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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/                    

Informações Básicas da Extensão

Nome Pin Tweet to IPFS Pin Tweet to IPFS
ID bkbejdaeamaehgpodkjdbkhkofpijagn
URL Oficial https://chromewebstore.google.com/detail/pin-tweet-to-ipfs/bkbejdaeamaehgpodkjdbkhkofpijagn
Descrição An extension to help you pin tweets to IPFS, allowing users to store tweets for archival purposes.
Tamanho do Arquivo 110 KB
Contagem de Instalações 122
Versão Atual 5.0.5
Última Atualização 2023-11-07
Data de Publicação 2022-10-26
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor David Justice
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/meandavejustice/pin-tweet-to-ipfs
URL da Página de Ajuda https://github.com/meandavejustice/pin-tweet-to-ipfs/issues
URL da Página de Política de Privacidade https://discuss.ipfs.tech/privacy
Idiomas Suportados 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"
}