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