Quicker Connector

Native message connector with Quicker application

Quicker Connectorとは何ですか?

Quicker Connectorはhttps://getquicker.netによって開発されたChromeの拡張機能で、その主な機能は「Native message connector with Quicker application」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

Quicker Connector拡張機能のCRXファイルをダウンロード

Quicker Connector拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        这是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  打开网址时允许传递参数(用于控制是否激活标签页)                    

拡張機能の基本情報

名前 Quicker Connector Quicker Connector
ID klggbkjfmbonefdcfkiidhcmfjdfnepa
公式URL https://chromewebstore.google.com/detail/quicker-connector/klggbkjfmbonefdcfkiidhcmfjdfnepa
説明 Native message connector with Quicker application
ファイルサイズ 63.15 KB
インストール数 40,517
現在のバージョン 0.7.4
最終更新日 2023-12-04
公開日 2020-07-08
評価 5.00/5 合計 36 レビュー
開発者 https://getquicker.net
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://getquicker.net/
ヘルプページのURL https://getquicker.net/r?id=12
プライバシーポリシーページのURL https://github.com/cuiliang/QuickerConnectorExtension/blob/master/privacy.md
対応言語 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"
}