取色器

取色器 for chengzijianzhan

What is 取色器?

取色器 is a Chrome extension developed by buaa.zyh, and its main feature is "取色器 for chengzijianzhan".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download 取色器 Extension CRX File

Download 取色器 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

                        color picker for oceanengine.com

Based on https://github.com/kepi/chromeEyeDropper

取色器可以从任意网页中取色,支持通过点击图标取色、快捷键取色、代码编程调用(这是申请权限而不是activeTab权限的原因)。

当前取色插件支持 *://*.oceanengine.com/*  编程调起取色。

支持调色,提供调色面板。为设计师、前端 或者所有在线编辑器使用者提供在线调色功能。                    

Extension Basic Information

Name 取色器 取色器
ID nhkjcaiojlbfebmjiechahfdmppccgnn
Official URL https://chromewebstore.google.com/detail/%E5%8F%96%E8%89%B2%E5%99%A8/nhkjcaiojlbfebmjiechahfdmppccgnn
Description 取色器 for chengzijianzhan
File Size 159 KB
Installation Count 7,253
Current Version 1.0.3
Last Updated 2020-01-03
Publish Date 2020-01-03
Rating 3.00/5 Total 5 Ratings
Developer buaa.zyh
Email [email protected]
Payment Type free
Help Page URL https://bytedance.feishu.cn/docs/doccnZuamCSH1oaaEC1swGAmUlf
Supported Languages zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "\u53d6\u8272\u5668",
    "version": "1.0.3",
    "manifest_version": 2,
    "description": " \u53d6\u8272\u5668 for chengzijianzhan",
    "homepage_url": "https:\/\/www.chengzijianzhan.com\/",
    "minimum_chrome_version": "49",
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "options_page": "html\/options.html",
    "icons": {
        "48": "img\/icon_48.png",
        "128": "img\/icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.oceanengine.com\/*"
            ],
            "js": [
                "event-bus.js"
            ]
        }
    ],
    "externally_connectable": {
        "ids": [
            "*"
        ],
        "matches": [
            "*:\/\/*.oceanengine.com\/*"
        ]
    },
    "browser_action": {
        "default_icon": {
            "19": "img\/icon_19.png",
            "38": "img\/icon_38.png"
        },
        "default_title": "\u53d6\u8272\u5668",
        "default_popup": "html\/popup.html"
    },
    "permissions": [
        "activeTab",
        "storage",
        "",
        "*:\/\/*.oceanengine.com\/*"
    ],
    "web_accessible_resources": [
        "inc\/jquery-2.1.0.min.js",
        "inc\/jquery.scrollstop.js",
        "edropper2.js",
        "eventBus.js",
        "inject\/anchor-cursor-default.css",
        "inject\/anchor-cursor-crosshair.css",
        "inject\/edropper2.css"
    ],
    "commands": {
        "activate": {
            "suggested_key": {
                "default": "Alt+P"
            },
            "description": "\u6fc0\u6d3b\u53d6\u8272"
        }
    }
}