StreetPass for Mastodon

Find your people on Mastodon

Что такое StreetPass for Mastodon?

StreetPass for Mastodon - это расширение Chrome, разработанное https://streetpass.social, и его основная функция - "Find your people on Mastodon".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения StreetPass for Mastodon

Скачайте файлы расширений StreetPass for Mastodon в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        StreetPass is a browser extension that helps you find your people on Mastodon. Here's how it works:

1. Mastodon users verify themselves by adding a custom link to their personal site.
2. StreetPass lets you know when you've found one of these links, and adds them to your StreetPass list.
3. Browse the web as usual. StreetPass will build a list of Mastodon users made up of the websites you go to.                    

Основная информация о расширении

Название StreetPass for Mastodon StreetPass for Mastodon
ID fphjfedjhinpnjblomfebcjjpdpakhhn
Официальный URL https://chromewebstore.google.com/detail/streetpass-for-mastodon/fphjfedjhinpnjblomfebcjjpdpakhhn
Описание Find your people on Mastodon
Размер файла 195 KB
Количество установок 1,424
Текущая Версия 2024.1
Последнее Обновление 2024-02-22
Дата публикации 2023-01-15
Рейтинг 4.92/5 Всего 13 оценок
Разработчик https://streetpass.social
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://streetpass.social
URL страницы помощи https://github.com/tvler/streetpass/issues
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "StreetPass for Mastodon",
    "version": "2024.1",
    "description": "Find your people on Mastodon",
    "homepage_url": "https:\/\/streetpass.social\/",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "browser-polyfill.js",
                "content-script.js"
            ]
        }
    ],
    "icons": {
        "128": "icon-128.png",
        "256": "icon-256.png"
    },
    "action": {
        "default_popup": "src\/popup.html",
        "default_title": "StreetPass",
        "default_icon": {
            "16": "\/action-inactive-16.png",
            "19": "\/action-inactive-19.png",
            "32": "\/action-inactive-32.png",
            "38": "\/action-inactive-38.png"
        }
    },
    "background": {
        "service_worker": "background.js",
        "type": "module"
    }
}