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…
O que é Magnifier and Color Picker With VscExtension?
Magnifier and Color Picker With VscExtension é uma extensão do Chrome desenvolvida por Sung Ye In, e sua principal característica é "This is Magnifier and ColorPicker in Your Chrome ! Functions : : COLOR PICKER You can select a color on the chrome extension…".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Magnifier and Color Picker With VscExtension
Baixe arquivos de extensão Magnifier and Color Picker With VscExtension no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Magnifier and Color Picker With VscExtension |
ID | imbkipjikhdedklmnhhlpmjmgclgeoak |
URL Oficial | https://chromewebstore.google.com/detail/magnifier-and-color-picke/imbkipjikhdedklmnhhlpmjmgclgeoak |
Descrição | This is Magnifier and ColorPicker in Your Chrome ! Functions : : COLOR PICKER You can select a color on the chrome extension… |
Tamanho do Arquivo | 44.24 KB |
Contagem de Instalações | 60 |
Versão Atual | 0.0.1 |
Última Atualização | 2022-04-22 |
Data de Publicação | 2022-04-22 |
Desenvolvedor | Sung Ye In |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" } } } |