Vuetify docs chrome extension

Add link to Vuetify docs in GitHub.

Hvad er Vuetify docs chrome extension?

Vuetify docs chrome extension er en Chrome-udvidelse udviklet af kokoa0429, og dens hovedfunktion er "Add link to Vuetify docs in GitHub.".

Udvidelsesskærmbilleder

screenshot

Download Vuetify docs chrome extension-udvidelses-CRX-fil

Download Vuetify docs chrome extension-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        Add link to Vuetify docs in GitHub.
This extension integrates GitHub code and documentation.
This extension can click Vuetify elements(ex.)                    

Grundlæggende oplysninger om udvidelsen

Navn Vuetify docs chrome extension Vuetify docs chrome extension
ID lojofoffjlaibldnphlifpghopnbcgpn
Officiel URL https://chromewebstore.google.com/detail/vuetify-docs-chrome-exten/lojofoffjlaibldnphlifpghopnbcgpn
Beskrivelse Add link to Vuetify docs in GitHub.
Filstørrelse 31.99 KB
Antal Installationer 77
Nuværende Version 0.0.1
Senest Opdateret 2020-10-23
Udgivelsesdato 2020-10-22
Udvikler kokoa0429
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/kokoa0429/vuetify-docs-chrome-extension
Hjælpeside-URL https://github.com/kokoa0429/vuetify-docs-chrome-extension
Understøttede Sprog en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Vuetify docs chrome extension",
    "version": "0.0.1",
    "description": "Add link to Vuetify docs in GitHub.",
    "homepage_url": "https:\/\/github.com\/kokoa0429\/vuetify-docs-chrome-extension",
    "manifest_version": 2,
    "minimum_chrome_version": "49",
    "author": "kokoa0429",
    "short_name": "Vuetify dock in GitHub",
    "permissions": [
        "*:\/\/github.com\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "128": "images\/icon-128.png"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/github.com\/*"
            ],
            "css": [
                "style.css"
            ]
        }
    ]
}