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
电子邮箱 [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"
            ]
        }
    ]
}