Magnifier and Color Picker With VscExtension

This is Magnifier and ColorPicker in Your Chrome ! Functions : : COLOR PICKER You can select a color on the chrome extension…

Qu'est-ce que Magnifier and Color Picker With VscExtension ?

Magnifier and Color Picker With VscExtension est une extension Chrome développée par Sung Ye In, et sa fonction principale est "This is Magnifier and ColorPicker in Your Chrome ! Functions : : COLOR PICKER You can select a color on the chrome extension…".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Magnifier and Color Picker With VscExtension

Téléchargez les fichiers d'extension Magnifier and Color Picker With VscExtension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        This is Magnifier and ColorPicker in Your Chrome !

Functions :
: COLOR PICKER
You can select a color on the chrome extension popup.
If you right click the circle in the palette, you can see the color big.

: MAGNIFIER
You can run it by pressing the bottom button of the pop-up window or shortcuts.
When the color is active, you can paste the color code into Ctrl + Alt + V in Vscode Extension.
- left mouse click : add color.

Shortcuts:
: RUN MAGNIFIER
window = ctrl + shift + space 
mac = command + shift + space

VScodeExtension in Market place : https://marketplace.visualstudio.com/items?itemName=syi0808.picking                    

Informations de Base sur l'Extension

Nom Magnifier and Color Picker With VscExtension Magnifier and Color Picker With VscExtension
ID imbkipjikhdedklmnhhlpmjmgclgeoak
URL Officiel https://chromewebstore.google.com/detail/magnifier-and-color-picke/imbkipjikhdedklmnhhlpmjmgclgeoak
Description This is Magnifier and ColorPicker in Your Chrome ! Functions : : COLOR PICKER You can select a color on the chrome extension…
Taille du Fichier 44.24 KB
Nombre d'Installations 60
Version Actuelle 0.0.1
Dernière Mise à Jour 2022-04-22
Date de Publication 2022-04-22
Développeur Sung Ye In
Email [email protected]
Type de Paiement free
Langues Prises en Charge ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Magnifier and Color Picker With VscExtension",
    "minimum_chrome_version": "88",
    "version": "0.0.1",
    "homepage_url": "https:\/\/github.com\/syi0808",
    "icons": [],
    "action": {
        "default_popup": ".\/index.html"
    },
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "css\/index.css"
            ],
            "run_at": "document_idle"
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "commands": {
        "magnifier": {
            "suggested_key": {
                "default": "Shift+Ctrl+Space",
                "mac": "Command+Shift+Space"
            },
            "description": "Starting Magnifier"
        }
    }
}