Mechanical Turk Group Ignore

For Amazon's Mechanical Turk (mturk.com). Adds ability to mark HIT groups ignored. Saves group ids you ignore in localstorage.

Was ist Mechanical Turk Group Ignore?

Mechanical Turk Group Ignore ist eine Chrome-Erweiterung, die von Jansen Price entwickelt wurde, und ihr Hauptmerkmal ist "For Amazon's Mechanical Turk (mturk.com). Adds ability to mark HIT groups ignored. Saves group ids you ignore in localstorage.".

Mechanical Turk Group Ignore-Erweiterungs-CRX-Datei herunterladen

Laden Sie Mechanical Turk Group Ignore-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This extension adds a link 'ignore' to the right side of a group (just after the link "View a HIT in this group." Clicking the ignore link will mark a group as ignored which is visually represented by 'greying out' the group.

This is useful if you are seeing the same group appear while browsing for HITs and want to mark them as groups you are not interested in.

Note that even while ignored a group is still fully functional on the site. It is only altered visually.                    

Grundlegende Informationen zur Erweiterung

Name Mechanical Turk Group Ignore Mechanical Turk Group Ignore
ID dlbpfgmnokdphmlgolbabfomlgcmemmo
Offizielle URL https://chrome.google.com/webstore/detail/mechanical-turk-group-ign/dlbpfgmnokdphmlgolbabfomlgcmemmo
Beschreibung For Amazon's Mechanical Turk (mturk.com). Adds ability to mark HIT groups ignored. Saves group ids you ignore in localstorage.
Dateigröße 52.04 KB
Installationsanzahl 56
Aktuelle Version 0.2.1
Letztes Update 2015-01-15
Veröffentlichungsdatum 2015-01-15
Bewertung 4.00/5 Insgesamt 4 Bewertungen
Entwickler Jansen Price
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Mechanical Turk Group Ignore",
    "short_name": "Mturk Grp Ignore",
    "version": "0.2.1",
    "icons": {
        "128": "128.png",
        "48": "48.png",
        "16": "16.png"
    },
    "author": "Jansen Price",
    "description": "For Amazon's Mechanical Turk (mturk.com). Adds ability to mark HIT groups ignored. Saves group ids you ignore in localstorage.",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.mturk.com\/mturk\/*"
            ],
            "js": [
                "jquery-2.1.3.min.js",
                "mturk-group-ignore.js"
            ],
            "css": [
                "mturk-group-ignore.css"
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}