Vuetify docs chrome extension
Add link to Vuetify docs in GitHub.
Vuetify docs chrome extension là gì?
Vuetify docs chrome extension là một tiện ích mở rộng Chrome được phát triển bởi kokoa0429, và tính năng chính của nó là "Add link to Vuetify docs in GitHub.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Vuetify docs chrome extension
Tải xuống các tệp mở rộng Vuetify docs chrome extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Add link to Vuetify docs in GitHub. This extension integrates GitHub code and documentation. This extension can click Vuetify elements(ex.)
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Vuetify docs chrome extension |
ID | lojofoffjlaibldnphlifpghopnbcgpn |
URL Chính Thức | https://chromewebstore.google.com/detail/vuetify-docs-chrome-exten/lojofoffjlaibldnphlifpghopnbcgpn |
Mô tả | Add link to Vuetify docs in GitHub. |
Kích Thước Tệp | 31.99 KB |
Số Lần Cài Đặt | 77 |
Phiên Bản Hiện Tại | 0.0.1 |
Cập Nhật Lần Cuối | 2020-10-23 |
Ngày Phát Hành | 2020-10-22 |
Nhà Phát Triển | kokoa0429 |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/kokoa0429/vuetify-docs-chrome-extension |
URL Trang Trợ Giúp | https://github.com/kokoa0429/vuetify-docs-chrome-extension |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |