browser-source-provider

browser words completion source for coc-browser

Cos'è browser-source-provider?

browser-source-provider è un'estensione di Chrome sviluppata da VOLDIKSS, e la sua funzione principale è "browser words completion source for coc-browser".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione browser-source-provider

Scarica i file di estensione browser-source-provider in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome browser-source-provider browser-source-provider
ID lkaldcfmhailjfcbapicgkdkkamanlml
URL Ufficiale https://chromewebstore.google.com/detail/browser-source-provider/lkaldcfmhailjfcbapicgkdkkamanlml
Descrizione browser words completion source for coc-browser
Dimensione del File 7.89 KB
Conteggio Installazioni 123
Versione Corrente 1.2.0
Ultimo Aggiornamento 2021-02-23
Data di Pubblicazione 2019-09-08
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore VOLDIKSS
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://voldikss.github.io/coc-browser/
URL della Pagina di Aiuto https://voldikss.github.io/coc-browser/
Lingue Supportate 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"
    ]
}