Vuetify docs chrome extension

Add link to Vuetify docs in GitHub.

Wat is Vuetify docs chrome extension?

Vuetify docs chrome extension is een Chrome-extensie ontwikkeld door kokoa0429, en de belangrijkste functie is "Add link to Vuetify docs in GitHub.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Vuetify docs chrome extension

Download Vuetify docs chrome extension-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Vuetify docs chrome extension Vuetify docs chrome extension
ID lojofoffjlaibldnphlifpghopnbcgpn
Officiële URL https://chromewebstore.google.com/detail/vuetify-docs-chrome-exten/lojofoffjlaibldnphlifpghopnbcgpn
Beschrijving Add link to Vuetify docs in GitHub.
Bestandsgrootte 31.99 KB
Aantal Installaties 77
Huidige Versie 0.0.1
Laatst Bijgewerkt 2020-10-23
Publicatiedatum 2020-10-22
Ontwikkelaar kokoa0429
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/kokoa0429/vuetify-docs-chrome-extension
Help Pagina-URL https://github.com/kokoa0429/vuetify-docs-chrome-extension
Ondersteunde Talen 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"
            ]
        }
    ]
}