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
官方網址 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
電子郵箱 [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"
    ]
}