Quicker Connector

Native message connector with Quicker application

What is Quicker Connector?

Quicker Connector is a Chrome extension developed by https://getquicker.net, and its main feature is "Native message connector with Quicker application".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Quicker Connector Extension CRX File

Download Quicker Connector 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

                        这是Quicker软件的浏览器插件,使用户可以通过Quicker动作控制浏览器或网页实现自动化操作。

需要结合Quicker软件1.29.0+版本使用。如果您没有使用Quicker软件(https://getquicker.net),请勿安装此插件。



请参考文档:https://getquicker.net/r?id=12
扩展已开源:https://github.com/cuiliang/QuickerConnectorExtension

!!! Do not download if you are not using Quicker application from https://getquicker.net.
This extension was designed to work with Quicker (A windows tool that can automate operations and softwares).

版本历史:
0.7.4  调整网页按钮的显示顺序。
0.7.3  网址匹配改为忽略大小写;增加恢复悬浮按钮位置功能;增加获取选择器按钮;
0.7.2  回传完善事件信息。
0.7.0  在切换活动窗口的时候,通知Quicker网址变更。增加在网页中显示动作按钮的功能。
0.6.0  增加部分API,重新设计通信协议,更稳定的Quicker连接。
0.5.0  增加部分API
0.4.2  修复无法指定窗口ID打开网页的问题。
0.3.1  打开网址时允许传递参数(用于控制是否激活标签页)                    

Extension Basic Information

Name Quicker Connector Quicker Connector
ID klggbkjfmbonefdcfkiidhcmfjdfnepa
Official URL https://chromewebstore.google.com/detail/quicker-connector/klggbkjfmbonefdcfkiidhcmfjdfnepa
Description Native message connector with Quicker application
File Size 63.15 KB
Installation Count 40,517
Current Version 0.7.4
Last Updated 2023-12-04
Publish Date 2020-07-08
Rating 5.00/5 Total 36 Ratings
Developer https://getquicker.net
Email [email protected]
Payment Type free
Extension Website https://getquicker.net/
Help Page URL https://getquicker.net/r?id=12
Privacy Policy Page URL https://github.com/cuiliang/QuickerConnectorExtension/blob/master/privacy.md
Supported Languages zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Quicker Connector",
    "version": "0.7.4",
    "manifest_version": 2,
    "description": "Native message connector with Quicker application",
    "background": {
        "scripts": [
            ".\/background\/main.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        ".\/content\/styles.css"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/libs\/jquery-3.6.0.min.js",
                ".\/content\/content.js"
            ],
            "css": [
                ".\/content\/styles.css"
            ],
            "all_frames": true
        }
    ],
    "icons": {
        "128": "icon-128.png"
    },
    "browser_action": {
        "default_popup": ".\/popup\/popup.html"
    },
    "permissions": [
        "nativeMessaging",
        "tabs",
        "",
        "debugger",
        "contextMenus",
        "storage",
        "tts"
    ],
    "optional_permissions": [
        "bookmarks",
        "browsingData",
        "downloads",
        "history",
        "pageCapture",
        "cookies",
        "sessions"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "homepage_url": "https:\/\/getquicker.net"
}