您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Make it easier to copy/paste data for 13D Data Extraction HITs
当前为
- // ==UserScript==
- // @name MTurk 13D Data Extraction
- // @description Make it easier to copy/paste data for 13D Data Extraction HITs
- // @namespace http://idlewords.net
- // @include https://www.mturkcontent.com/dynamic/hit*
- // @include https://www.sec.gov/Archives/*
- // @version 0.1
- // @require https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js
- // @grant none
- // ==/UserScript==
- if ($("#PageTitle:contains('Filing Detail')").length) {
- var accept_date = $("div.formContent").eq(0).children("div.formGrouping").eq(0).children("div.info").eq(1);
- var split_date = accept_date.text().split(" ");
- var acc_date = split_date[0].split("-");
- new_date = acc_date[2] + '/' + acc_date[1] + '/' + acc_date[0];
- accept_date.text(new_date + ' ' + split_date[1]);
- } else if ($("li:contains('You will be provided')").length) {
- $("#CUSIP").attr('taborder', "1");
- $("#acceptance_date").blur(function() {
- if ($(this).val() !== '' && $("#acceptance_time").val() === '') {
- var date_time = $(this).val().split(" ");
- $("#acceptance_time").val(date_time[1]);
- $("#acceptance_time").attr('readonly', 'readonly');
- $("#acceptance_date").val(date_time[0]);
- $("#acceptance_date").attr('readonly', 'readonly');
- }
- });
- }