Patchfox
Patchfox is a Secure Scuttlebutt client
什麼是Patchfox?
Patchfox是由Andre Alves Garzia開發的Chrome擴展程式,該擴展的主要功能是“Patchfox is a Secure Scuttlebutt client”。
擴展截圖
下載Patchfox擴展crx文件
下載Patchfox擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
                        Patchfox is a client for Secure Scuttlebutt decentralized platform. Secure Scuttlebutt is an offline-first peer to peer decentralized platform that is fostering a more humane social graph. It forms a global cryptographic social network with its peers. Each user is identified by a public key, and publishes a log of signed messages, which other users follow socially. Patchfox is a client for this network.                     擴展基本資訊
| 名稱 |   |  
| ID | ocanekmedfooidiahhelofknmpobdmdp | 
| 官方網址 | https://chromewebstore.google.com/detail/patchfox/ocanekmedfooidiahhelofknmpobdmdp | 
| 簡介 | Patchfox is a Secure Scuttlebutt client | 
| 檔案大小 | 10.09 MB | 
| 安裝次數 | 27 | 
| 目前版本 | 2022.2.1 | 
| 更新時間 | 2022-02-23 | 
| 上架時間 | 2021-06-11 | 
| 評分 | 5.00/5 共 1 次評分 | 
| 開發者 | Andre Alves Garzia | 
| 電子郵箱 | [email protected] | 
| 付費類型 | free | 
| 擴展官網 | https://patchfox.org | 
| 說明頁面URL | https://github.com/soapdog/patchfox/issues | 
| 支援的語言 | en-GB | 
| manifest.json | |
 {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Patchfox is a Secure Scuttlebutt client",
    "manifest_version": 2,
    "name": "Patchfox",
    "version": "2022.2.1",
    "icons": {
        "512": "images\/patchfox_pixel_512.png",
        "96": "images\/patchfox_pixel_96.png",
        "128": "images\/patchfox_pixel_128.png"
    },
    "applications": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "65.0"
        }
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_ui": {
        "page": "index.html?pkg=settings",
        "open_in_tab": true
    },
    "browser_action": {
        "default_icon": {
            "32": "images\/patchfox_32.png",
            "512": "images\/patchfox_pixel_512.png",
            "96": "images\/patchfox_pixel_96.png",
            "128": "images\/patchfox_pixel_128.png"
        },
        "default_popup": "browserAction.html"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Period"
            }
        }
    },
    "protocol_handlers": [
        {
            "protocol": "ssb",
            "name": "Patchfox",
            "uriTemplate": "\/index.html?pkg=intercept&query=%s"
        },
        {
            "protocol": "ext+patchfox",
            "name": "Patchfox",
            "uriTemplate": "\/index.html?pkg=intercept&query=%s"
        }
    ],
    "omnibox": {
        "keyword": "ssb?"
    },
    "permissions": [
        "activeTab",
        "storage",
        "unlimitedStorage",
        "clipboardWrite",
        "contextMenus"
    ],
    "sidebar_action": {
        "default_icon": {
            "32": "images\/patchfox_32.png",
            "512": "images\/patchfox_pixel_512.png",
            "96": "images\/patchfox_pixel_96.png",
            "128": "images\/patchfox_pixel_128.png"
        },
        "default_title": "Patchfox",
        "default_panel": "\/index.html",
        "open_at_install": false
    }
}  |  |