Stumble Across

Bookmarking and content discovery on the blockchain

Co to jest Stumble Across?

Stumble Across to rozszerzenie Chrome opracowane przez StumbleAcross, a jego główną funkcją jest „Bookmarking and content discovery on the blockchain”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Stumble Across

Pobierz pliki rozszerzeń Stumble Across w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Stumble Across Stumble Across
ID olognjcjfiknpiblpbnmjgbehodclokg
Oficjalny URL https://chromewebstore.google.com/detail/stumble-across/olognjcjfiknpiblpbnmjgbehodclokg
Opis Bookmarking and content discovery on the blockchain
Rozmiar pliku 125 KB
Liczba instalacji 13
Aktualna Wersja 0.3
Ostatnia Aktualizacja 2020-09-28
Data Publikacji 2020-09-15
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper StumbleAcross
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://stumbleacross.app
Adres URL Strony Polityki Prywatności https://stumbleacross.app/privacy.html
Obsługiwane Języki 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:\/\/*\/*"
    ]
}