browser-source-provider

browser words completion source for coc-browser

Was ist browser-source-provider?

browser-source-provider ist eine Chrome-Erweiterung, die von VOLDIKSS entwickelt wurde, und ihr Hauptmerkmal ist "browser words completion source for coc-browser".

Erweiterungsscreenshots

screenshot

browser-source-provider-Erweiterungs-CRX-Datei herunterladen

Laden Sie browser-source-provider-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name browser-source-provider browser-source-provider
ID lkaldcfmhailjfcbapicgkdkkamanlml
Offizielle URL https://chromewebstore.google.com/detail/browser-source-provider/lkaldcfmhailjfcbapicgkdkkamanlml
Beschreibung browser words completion source for coc-browser
Dateigröße 7.89 KB
Installationsanzahl 123
Aktuelle Version 1.2.0
Letztes Update 2021-02-23
Veröffentlichungsdatum 2019-09-08
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler VOLDIKSS
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://voldikss.github.io/coc-browser/
Hilfeseite URL https://voldikss.github.io/coc-browser/
Unterstützte Sprachen 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"
    ]
}