Contentos Wallet

A Contentos Wallet in your Browser

Contentos Wallet क्या है?

Contentos Wallet dev-chrome-plugin द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A Contentos Wallet in your Browser"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Contentos Wallet एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Contentos Wallet is an extension for accessing and interacting with contentos blockchain in your normal Chrome browser.

The extension injects ContentosWallet into every website's javascript context, although it isn't a wrapper of contentos blockchain Api, but it can be used to communicate with contentos blockchain.

Cotentos Wallet also let the user create and manage each transaction. If a dapp want to launch a transaction and write to blockchain, the user can get a prompt window to review the transaction before approving or rejecting it.

Because it adds functionality to the normal browser context, Contentos Wallet requires the permission to read and write to any webpage. You can always "view the source" of Contentos Wallet the way you do any Chrome extension, or view the source code on Github:
https://github.com/coschain/contentos-extension                    

एक्सटेंशन की मूल जानकारी

नाम Contentos Wallet Contentos Wallet
ID fdlphmindllconhbcmlpdiildicodcjm
आधिकारिक URL https://chromewebstore.google.com/detail/contentos-wallet/fdlphmindllconhbcmlpdiildicodcjm
विवरण A Contentos Wallet in your Browser
फ़ाइल का आकार 1.29 MB
स्थापना संख्या 32
वर्तमान संस्करण 1.2.1
अंतिम अपडेट 2020-04-06
प्रकाशन तिथि 2020-04-03
डेवलपर dev-chrome-plugin
भुगतान के प्रकार free
समर्थित भाषाएँ en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Contentos Wallet",
    "description": "A Contentos Wallet in your Browser",
    "version": "1.2.1",
    "manifest_version": 2,
    "default_locale": "zh_CN",
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "permissions": [
        "",
        "background",
        "unlimitedStorage",
        "storage"
    ],
    "browser_action": {
        "default_title": "Contentos Wallet",
        "default_popup": "pages\/popup.html"
    },
    "background": {
        "persistent": true,
        "scripts": [
            "static\/js\/background.js"
        ]
    },
    "options_ui": {
        "page": "pages\/options.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "matches": [
                "file:\/\/*\/*",
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "static\/js\/inject.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/ssl.captcha.qq.com https:\/\/www.google-analytics.com; object-src 'self'",
    "web_accessible_resources": [
        "static\/js\/content.js"
    ]
}