browser-source-provider

browser words completion source for coc-browser

browser-source-providerとは何ですか?

browser-source-providerはVOLDIKSSによって開発されたChromeの拡張機能で、その主な機能は「browser words completion source for coc-browser」です。

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

screenshot

browser-source-provider拡張機能のCRXファイルをダウンロード

browser-source-provider拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        chrome extension for coc-browser: https://github.com/voldikss/coc-browser. It is used to collect the words in the current webpage and save them in some cache files. 

There is a local http server, which is spawned by another application coc-browser, gathers all these words as the candidates of code completion in vim.                    

拡張機能の基本情報

名前 browser-source-provider browser-source-provider
ID lkaldcfmhailjfcbapicgkdkkamanlml
公式URL https://chromewebstore.google.com/detail/browser-source-provider/lkaldcfmhailjfcbapicgkdkkamanlml
説明 browser words completion source for coc-browser
ファイルサイズ 7.89 KB
インストール数 123
現在のバージョン 1.2.0
最終更新日 2021-02-23
公開日 2019-09-08
評価 5.00/5 合計 1 レビュー
開発者 VOLDIKSS
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://voldikss.github.io/coc-browser/
ヘルプページのURL https://voldikss.github.io/coc-browser/
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "browser-source-provider",
    "version": "1.2.0",
    "description": "browser words completion source for coc-browser",
    "author": "voldikss",
    "icons": {
        "16": "bcp.png",
        "48": "bcp.png",
        "128": "bcp.png"
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "browser-source-provider"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "https:\/\/127.0.0.1\/*",
        "http:\/\/127.0.0.1\/*",
        "storage"
    ]
}