browser-source-provider

browser words completion source for coc-browser

What is browser-source-provider?

browser-source-provider is a Chrome extension developed by VOLDIKSS, and its main feature is "browser words completion source for coc-browser".

Extension Screenshots

screenshot

Download browser-source-provider Extension CRX File

Download browser-source-provider extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name browser-source-provider browser-source-provider
ID lkaldcfmhailjfcbapicgkdkkamanlml
Official URL https://chromewebstore.google.com/detail/browser-source-provider/lkaldcfmhailjfcbapicgkdkkamanlml
Description browser words completion source for coc-browser
File Size 7.89 KB
Installation Count 123
Current Version 1.2.0
Last Updated 2021-02-23
Publish Date 2019-09-08
Rating 5.00/5 Total 1 Ratings
Developer VOLDIKSS
Email [email protected]
Payment Type free
Extension Website https://voldikss.github.io/coc-browser/
Help Page URL https://voldikss.github.io/coc-browser/
Supported Languages 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"
    ]
}