Stumble Across

Bookmarking and content discovery on the blockchain

Что такое Stumble Across?

Stumble Across - это расширение Chrome, разработанное StumbleAcross, и его основная функция - "Bookmarking and content discovery on the blockchain".

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

screenshot
screenshot

Скачать файл CRX расширения Stumble Across

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

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

                        Bookmark cool webpages forever on the blockchain, click "Stumble" to discover random webpages bookmarked by other users. Get paid in bitcoin when other users like your content.

This is a beta version, suggestions for improvements are welcome.

After installing, you might need to pin the extension (as shown in the second screenshot) to be able to use it.                    

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

Название Stumble Across Stumble Across
ID olognjcjfiknpiblpbnmjgbehodclokg
Официальный URL https://chromewebstore.google.com/detail/stumble-across/olognjcjfiknpiblpbnmjgbehodclokg
Описание Bookmarking and content discovery on the blockchain
Размер файла 125 KB
Количество установок 13
Текущая Версия 0.3
Последнее Обновление 2020-09-28
Дата публикации 2020-09-15
Рейтинг 5.00/5 Всего 1 оценок
Разработчик StumbleAcross
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://stumbleacross.app
URL страницы политики конфиденциальности https://stumbleacross.app/privacy.html
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Stumble Across",
    "version": "0.3",
    "description": "Bookmarking and content discovery on the blockchain",
    "manifest_version": 2,
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_title": "StumbleAcross on this page"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "web_accessible_resources": [
        "modal.html",
        "popup.js"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.stumbleacross.app\/*"
            ],
            "run_at": "document_end",
            "js": [
                "stumbleacross.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage",
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ]
}