Vuetify docs chrome extension

Add link to Vuetify docs in GitHub.

Vuetify docs chrome extensionとは何ですか?

Vuetify docs chrome extensionはkokoa0429によって開発されたChromeの拡張機能で、その主な機能は「Add link to Vuetify docs in GitHub.」です。

拡張機能のスクリーンショット

screenshot

Vuetify docs chrome extension拡張機能のCRXファイルをダウンロード

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
Eメール [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"
            ]
        }
    ]
}