EWOQ Tool

A powerful tool for EWOQ raters

Τι είναι το EWOQ Tool;

Το EWOQ Tool είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Lucas Do, και η κύρια λειτουργία του είναι "A powerful tool for EWOQ raters".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης EWOQ Tool

Λήψη αρχείων επέκτασης 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
Επίσημο 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
        }
    ]
}