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
电子邮箱 [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"
    ]
}