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…
什麼是Magnifier and Color Picker With VscExtension?
Magnifier and Color Picker With VscExtension是由Sung Ye In開發的Chrome擴展程式,該擴展的主要功能是“This is Magnifier and ColorPicker in Your Chrome ! Functions : : COLOR PICKER You can select a color on the chrome extension…”。
擴展截圖
下載Magnifier and Color Picker With VscExtension擴展crx文件
下載Magnifier and Color Picker With VscExtension擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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
擴展基本資訊
名稱 | Magnifier and Color Picker With VscExtension |
ID | imbkipjikhdedklmnhhlpmjmgclgeoak |
官方網址 | https://chromewebstore.google.com/detail/magnifier-and-color-picke/imbkipjikhdedklmnhhlpmjmgclgeoak |
簡介 | This is Magnifier and ColorPicker in Your Chrome ! Functions : : COLOR PICKER You can select a color on the chrome extension… |
檔案大小 | 44.24 KB |
安裝次數 | 60 |
目前版本 | 0.0.1 |
更新時間 | 2022-04-22 |
上架時間 | 2022-04-22 |
開發者 | Sung Ye In |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | 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" } } } |