Vuetify docs chrome extension

Add link to Vuetify docs in GitHub.

Vuetify docs chrome extensionคืออะไร?

Vuetify docs chrome extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย kokoa0429 และคุณลักษณะหลักของมันคือ "Add link to Vuetify docs in GitHub."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Vuetify docs chrome extension

ดาวน์โหลดไฟล์ส่วนขยาย Vuetify docs chrome extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Vuetify docs chrome extension Vuetify docs chrome extension
ID lojofoffjlaibldnphlifpghopnbcgpn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/vuetify-docs-chrome-exten/lojofoffjlaibldnphlifpghopnbcgpn
คำอธิบาย Add link to Vuetify docs in GitHub.
ขนาดไฟล์ 31.99 KB
จำนวนการติดตั้ง 77
เวอร์ชันปัจจุบัน 0.0.1
อัปเดตครั้งล่าสุด 2020-10-23
วันที่เผยแพร่ 2020-10-22
ผู้พัฒนา kokoa0429
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/kokoa0429/vuetify-docs-chrome-extension
URL หน้าช่วยเหลือ https://github.com/kokoa0429/vuetify-docs-chrome-extension
ภาษาที่รองรับ 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"
            ]
        }
    ]
}