Sets up the TradeMe community report page

Selects the "wrong category" option from the list and starts the explanation text

目前為 2016-05-18 提交的版本,檢視 最新版本

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         Sets up the TradeMe community report page
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Selects the "wrong category" option from the list and starts the explanation text
// @author       Sarah King
// @match        http://www.trademe.co.nz/Browse/CommunityWatch.aspx*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    var splitUrl = function() {
        var vars = [], hash;
        var url = document.URL.split('?')[0];
        var p = document.URL.split('?')[1];
        if(p !== undefined){
            p = p.split('&');
            for(var i = 0; i < p.length; i++){
                hash = p[i].split('=');
                vars.push(hash[1]);
                vars[hash[0]] = hash[1];
            }
        }
        vars['url'] = url;
        return vars;
    };

    var rptpath = splitUrl().rptpath;

    //console.log( 'mobile-phones%2Fmobile-phones'.length);

    $( "select[name*='complaint_subject_id']" ).val(19);
    var comment = $( "textarea[name*='body']" );

    if (rptpath !== undefined){
        if (rptpath == '341-887-1099-'){
            comment.text('Belongs in Sewing Machine Accessories');
        }
        else if (rptpath.substr(0,29) == 'mobile-phones%2Fmobile-phones' || rptpath.substr(0,11) == '344-422-430'){
            comment.text('Belongs in Mobile Phones | Accessories or one of the subcategories.');
        }
    }
    //mobile-phones/accessories
})();