您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Filter AILYZE website elements
当前为
- // ==UserScript==
- // @name AILYZE Filter Script
- // @namespace tampermoney.org
- // @version 1.0
- // @description Filter AILYZE website elements
- // @match https://www.ailyze.com/ailyze/*
- // @grant none
- // ==/UserScript==
- (function() {
- 'use strict';
- // Localizar o botão "Summarize"
- var summarizeButton = document.querySelector('button:contains("Summarize")');
- // Verificar se o botão foi encontrado
- if (summarizeButton) {
- // Fazer algo com o botão, como adicionar um evento de clique
- summarizeButton.addEventListener('click', function() {
- // Lógica para tratar o clique no botão "Summarize"
- // ...
- });
- }
- // Localizar o elemento select com id "id_summary"
- var summarySelect = document.querySelector('select#id_summary');
- // Verificar se o elemento foi encontrado
- if (summarySelect) {
- // Fazer algo com o elemento select
- // ...
- }
- // Localizar o elemento select com id "id_language_options"
- var languageSelect = document.querySelector('select#id_language_options');
- // Verificar se o elemento foi encontrado
- if (languageSelect) {
- // Fazer algo com o elemento select
- // ...
- }
- // Localizar o elemento select com id "id_response_size"
- var responseSizeSelect = document.querySelector('select#id_response_size');
- // Verificar se o elemento foi encontrado
- if (responseSizeSelect) {
- // Fazer algo com o elemento select
- // ...
- }
- // Localizar o elemento main
- var mainElement = document.querySelector('body main');
- // Verificar se o elemento foi encontrado
- if (mainElement) {
- // Fazer algo com o elemento main
- // ...
- }
- // Outras localizações e tratamentos de erros podem ser adicionados conforme necessário
- })();