Tools4noobs Summarize: Autocheck all checkboxes

automatically check all boxes on Online summarize tool (free summarizing)

目前為 2019-03-15 提交的版本,檢視 最新版本

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         Tools4noobs Summarize: Autocheck all checkboxes
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  automatically check all boxes on Online summarize tool (free summarizing)
// @author       You
// @match        https://www.tools4noobs.com/summarize/
// @grant        none
// ==/UserScript==

var show_relevance = document.getElementById("show_relevance");
show_relevance.checked = true;

var show_best_words = document.getElementById("show_best_words");
show_best_words.checked = true;

var show_keyheigh = document.getElementById("show_keyheigh");
show_keyheigh.checked = true;

var show_sentences = document.getElementById("show_sentences");
show_sentences.checked = true;