Stumble Across

Bookmarking and content discovery on the blockchain

Stumble Acrossとは何ですか?

Stumble AcrossはStumbleAcrossによって開発されたChromeの拡張機能で、その主な機能は「Bookmarking and content discovery on the blockchain」です。

拡張機能のスクリーンショット

screenshot
screenshot

Stumble Across拡張機能のCRXファイルをダウンロード

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
Eメール [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:\/\/*\/*"
    ]
}