Vuetify docs chrome extension

Add link to Vuetify docs in GitHub.

What is Vuetify docs chrome extension?

Vuetify docs chrome extension is a Chrome extension developed by kokoa0429, and its main feature is "Add link to Vuetify docs in GitHub.".

Extension Screenshots

screenshot

Download Vuetify docs chrome extension Extension CRX File

Download Vuetify docs chrome extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Vuetify docs chrome extension Vuetify docs chrome extension
ID lojofoffjlaibldnphlifpghopnbcgpn
Official URL https://chromewebstore.google.com/detail/vuetify-docs-chrome-exten/lojofoffjlaibldnphlifpghopnbcgpn
Description Add link to Vuetify docs in GitHub.
File Size 31.99 KB
Installation Count 77
Current Version 0.0.1
Last Updated 2020-10-23
Publish Date 2020-10-22
Developer kokoa0429
Email [email protected]
Payment Type free
Extension Website https://github.com/kokoa0429/vuetify-docs-chrome-extension
Help Page URL https://github.com/kokoa0429/vuetify-docs-chrome-extension
Supported Languages 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"
            ]
        }
    ]
}