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
官方網址 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:\/\/*\/*"
    ]
}