EWOQ Tool

A powerful tool for EWOQ raters

什麼是EWOQ Tool?

EWOQ Tool是由Lucas Do開發的Chrome擴展程式,該擴展的主要功能是“A powerful tool for EWOQ raters”。

擴展截圖

screenshot

下載EWOQ Tool擴展crx文件

下載EWOQ Tool擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        /* FEATURES */
1. Notify to user when there are any available task by sending message to Telegram
2. Support start tasks automatically
3. Support submit tasks automatically with a timer can configurable
4. Support refresh homepage to get more jobs faster
5. Count the total working tasks, working time, calculate the productivity
6. Show the summary of the working task (number of tasks / task type)

/* IMPORTANT */
You need to contact me to get the trial account or subscribe a monthly paid account.
Contact via facebook: https://fb.com/dn.dong10
Email: [email protected]                    

擴展基本資訊

名稱 EWOQ Tool EWOQ Tool
ID mkkpnfgkgemgogfjdjecoligldodncie
官方網址 https://chromewebstore.google.com/detail/ewoq-tool/mkkpnfgkgemgogfjdjecoligldodncie
簡介 A powerful tool for EWOQ raters
檔案大小 377 KB
安裝次數 605
目前版本 0.0.3
更新時間 2023-09-15
上架時間 2023-09-10
評分 4.17/5 共 6 次評分
開發者 Lucas Do
電子郵箱 [email protected]
付費類型 in_app
擴展官網 https://fb.com/dn.dong10
說明頁面URL https://www.youtube.com/@onhuong8009
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "EWOQ Tool",
    "description": "A powerful tool for EWOQ raters",
    "version": "0.0.3",
    "manifest_version": 3,
    "author": "lucasdo",
    "icons": {
        "16": "\/icons\/icon-16x16.png",
        "24": "\/icons\/icon-24x24.png",
        "32": "\/icons\/icon-32x32.png",
        "48": "\/icons\/icon-48x48.png",
        "64": "\/icons\/icon-64x64.png",
        "128": "\/icons\/icon-128x128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.rating.ewoq.google.com\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "\/scripts\/content-script.js"
            ]
        }
    ],
    "background": {
        "service_worker": "\/service-worker.js",
        "type": "module"
    },
    "action": {
        "default_popup": "\/popup\/popup.html",
        "default_icon": {
            "16": "\/icons\/icon-16x16.png",
            "24": "\/icons\/icon-24x24.png",
            "32": "\/icons\/icon-32x32.png",
            "48": "\/icons\/icon-48x48.png",
            "64": "\/icons\/icon-64x64.png",
            "128": "\/icons\/icon-128x128.png"
        }
    },
    "options_page": "\/options\/options.html",
    "permissions": [
        "storage",
        "notifications"
    ],
    "host_permissions": [
        ""
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "scripts\/*",
                "utils\/*"
            ],
            "matches": [
                "*:\/\/*.rating.ewoq.google.com\/*"
            ],
            "use_dynamic_url": true
        }
    ]
}