Vuetify docs chrome extension

Add link to Vuetify docs in GitHub.

Was ist Vuetify docs chrome extension?

Vuetify docs chrome extension ist eine Chrome-Erweiterung, die von kokoa0429 entwickelt wurde, und ihr Hauptmerkmal ist "Add link to Vuetify docs in GitHub.".

Erweiterungsscreenshots

screenshot

Vuetify docs chrome extension-Erweiterungs-CRX-Datei herunterladen

Laden Sie Vuetify docs chrome extension-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

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

Grundlegende Informationen zur Erweiterung

Name Vuetify docs chrome extension Vuetify docs chrome extension
ID lojofoffjlaibldnphlifpghopnbcgpn
Offizielle URL https://chromewebstore.google.com/detail/vuetify-docs-chrome-exten/lojofoffjlaibldnphlifpghopnbcgpn
Beschreibung Add link to Vuetify docs in GitHub.
Dateigröße 31.99 KB
Installationsanzahl 77
Aktuelle Version 0.0.1
Letztes Update 2020-10-23
Veröffentlichungsdatum 2020-10-22
Entwickler kokoa0429
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/kokoa0429/vuetify-docs-chrome-extension
Hilfeseite URL https://github.com/kokoa0429/vuetify-docs-chrome-extension
Unterstützte Sprachen 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"
            ]
        }
    ]
}