Quicker Connector

Native message connector with Quicker application

Qu'est-ce que Quicker Connector ?

Quicker Connector est une extension Chrome développée par https://getquicker.net, et sa fonction principale est "Native message connector with Quicker application".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Quicker Connector

Téléchargez les fichiers d'extension Quicker Connector au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Quicker Connector Quicker Connector
ID klggbkjfmbonefdcfkiidhcmfjdfnepa
URL Officiel https://chromewebstore.google.com/detail/quicker-connector/klggbkjfmbonefdcfkiidhcmfjdfnepa
Description Native message connector with Quicker application
Taille du Fichier 63.15 KB
Nombre d'Installations 40,517
Version Actuelle 0.7.4
Dernière Mise à Jour 2023-12-04
Date de Publication 2020-07-08
Évaluation 5.00/5 Total 36 Évaluations
Développeur https://getquicker.net
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://getquicker.net/
URL de la Page d'Aide https://getquicker.net/r?id=12
URL de la Page de Politique de Confidentialité https://github.com/cuiliang/QuickerConnectorExtension/blob/master/privacy.md
Langues Prises en Charge 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"
}