Vuetify docs chrome extension
Add link to Vuetify docs in GitHub.
Apa itu Vuetify docs chrome extension?
Vuetify docs chrome extension adalah ekstensi Chrome yang dikembangkan oleh kokoa0429, dan fitur utamanya adalah "Add link to Vuetify docs in GitHub.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Vuetify docs chrome extension
Unduh file ekstensi Vuetify docs chrome extension dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
Add link to Vuetify docs in GitHub. This extension integrates GitHub code and documentation. This extension can click Vuetify elements(ex.)
Informasi Dasar Ekstensi
Nama | Vuetify docs chrome extension |
ID | lojofoffjlaibldnphlifpghopnbcgpn |
URL Resmi | https://chromewebstore.google.com/detail/vuetify-docs-chrome-exten/lojofoffjlaibldnphlifpghopnbcgpn |
Deskripsi | Add link to Vuetify docs in GitHub. |
Ukuran File | 31.99 KB |
Jumlah Instalasi | 77 |
Versi Saat Ini | 0.0.1 |
Terakhir Diperbarui | 2020-10-23 |
Tanggal Publikasi | 2020-10-22 |
Pengembang | kokoa0429 |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/kokoa0429/vuetify-docs-chrome-extension |
URL Halaman Bantuan | https://github.com/kokoa0429/vuetify-docs-chrome-extension |
Bahasa yang Didukung | 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" ] } ] } |