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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        /* 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
공식 URL 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
        }
    ]
}