HIT Searcher

Search Mturk HIT and automatically add is to you HIT queue.

HIT Searcherคืออะไร?

HIT Searcher เป็นส่วนขยายของ Chrome ที่พัฒนาโดย kujilab และคุณลักษณะหลักของมันคือ "Search Mturk HIT and automatically add is to you HIT queue."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย HIT Searcher

ดาวน์โหลดไฟล์ส่วนขยาย HIT Searcher ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Search Mturk HIT and automatically add is to you HIT queue. HIT search basically refresh all mturk tab in a given particular time untill your search priority name matches with search result.
If you select Auto Accept Option then if search priority name matches with search result then 2 HIT will be automatically added in you mturk HITs queue.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ HIT Searcher HIT Searcher
ID menkpfkljigafmokdbcpaolfiebjiapd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/hit-searcher/menkpfkljigafmokdbcpaolfiebjiapd
คำอธิบาย Search Mturk HIT and automatically add is to you HIT queue.
ขนาดไฟล์ 93.15 KB
จำนวนการติดตั้ง 100
เวอร์ชันปัจจุบัน 2.0.1
อัปเดตครั้งล่าสุด 2020-06-12
วันที่เผยแพร่ 2020-06-12
ผู้พัฒนา kujilab
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "HIT Searcher",
    "description": "Search Mturk HIT and automatically add is to you HIT queue.",
    "version": "2.0.1",
    "manifest_version": 2,
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "jquery.js",
                "content.js"
            ],
            "matches": [
                "https:\/\/worker.mturk.com\/*"
            ],
            "match_about_blank": true
        }
    ],
    "icons": {
        "16": "images\/16.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "browser_action": {
        "default_icon": "24.png",
        "default_popup": "popup.html",
        "default_title": "HIT Searcher"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+H"
            }
        }
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_security_policy": "script-src 'self' https:\/\/www.gstatic.com\/ https:\/\/*.firebaseio.com https:\/\/www.googleapis.com; object-src 'self'"
}