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…
Wat is Magnifier and Color Picker With VscExtension?
Magnifier and Color Picker With VscExtension is een Chrome-extensie ontwikkeld door Sung Ye In, en de belangrijkste functie is "This is Magnifier and ColorPicker in Your Chrome ! Functions : : COLOR PICKER You can select a color on the chrome extension…".
Extensie Screenshots
Download het CRX-bestand van de extensie Magnifier and Color Picker With VscExtension
Download Magnifier and Color Picker With VscExtension-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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 Basisinformatie over de Extensie
| Naam | |
| ID | imbkipjikhdedklmnhhlpmjmgclgeoak |
| Officiële URL | https://chromewebstore.google.com/detail/magnifier-and-color-picke/imbkipjikhdedklmnhhlpmjmgclgeoak |
| Beschrijving | This is Magnifier and ColorPicker in Your Chrome ! Functions : : COLOR PICKER You can select a color on the chrome extension… |
| Bestandsgrootte | 44.24 KB |
| Aantal Installaties | 60 |
| Huidige Versie | 0.0.1 |
| Laatst Bijgewerkt | 2022-04-22 |
| Publicatiedatum | 2022-04-22 |
| Ontwikkelaar | Sung Ye In |
| [email protected] | |
| Betalingswijze | free |
| Ondersteunde Talen | 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"
}
}
} | |