您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
chromiumベースパレット拡張(https://pictsense.xxxxxxxx.jp)のtampermonkey版だよ これならfirefoxとかedgeでも使えるね!!
// ==UserScript== // @name カラーパレット拡張(ピクトセンス) // @namespace http://tampermonkey.net/ // @version 0.3 // @description chromiumベースパレット拡張(https://pictsense.xxxxxxxx.jp)のtampermonkey版だよ これならfirefoxとかedgeでも使えるね!! // @author You // @match https://pictsense.com/ // @grant none // ==/UserScript== (function() { document.getElementById('colorPalette').innerHTML = '<button type="button" class="color" data-color="000000" style="background-color: #FF0; height: 8px;"></button>'+ '<button type="button" class="color" data-color="808080" style="background-color: #FF0; height: 8px;"></button>'+ '<button type="button" class="color" data-color="d3d3d3" style="background-color: #FF0; height: 8px;"></button>'+ '<button type="button" class="color" data-color="ffffff" style="background-color: #FF0; height: 8px;"></button>'+ '<button type="button" class="color" data-color="ff0000" style="background-color: #FF0; height: 8px;"></button>'+ '<button type="button" class="color" data-color="ff0055" style="background-color: #FF0; height: 8px;"></button>'+ '<button type="button" class="color" data-color="ff00aa" style="background-color: #FF0; height: 8px;"></button>'+ '<button type="button" class="color" data-color="ff00ff" style="background-color: #FF0; height: 8px;"></button>'+ '<button type="button" class="color" data-color="d500ff" style="background-color: #FF0; height: 8px;"></button>'+ '<button type="button" class="color" data-color="aa00ff" style="background-color: #FF0; height: 8px;"></button>'+ '<button type="button" class="color" data-color="5500ff" style="background-color: #FF0; height: 8px;"></button>'+ '<button type="button" class="color" data-color="0000ff" style="background-color: #FF0; height: 8px;"></button>'+ '<button type="button" class="color" data-color="002bff" style="background-color: #FF0; height: 8px;"></button>'+ '<button type="button" class="color" data-color="0055ff" style="background-color: #FF0; height: 8px;"></button>'+ '<button type="button" class="color" data-color="00aaff" style="background-color: #FF0; height: 8px;"></button>'+ '<button type="button" class="color" data-color="00d5ff" style="background-color: #FF0; height: 8px;"></button>'+ '<button type="button" class="color" data-color="00ffd5" style="background-color: #FF0; height: 8px;"></button>'+ '<button type="button" class="color" data-color="00ff80" style="background-color: #FF0; height: 8px;"></button>'+ '<button type="button" class="color" data-color="00ff2b" style="background-color: #FF0; height: 8px;"></button>'+ '<button type="button" class="color" data-color="71ff0e" style="background-color: #FF0; height: 8px;"></button>'+ '<button type="button" class="color" data-color="aaff00" style="background-color: #FF0; height: 8px;"></button>'+ '<button type="button" class="color" data-color="d5ff00" style="background-color: #FF0; height: 8px;"></button>'+ '<button type="button" class="color" data-color="ffff00" style="background-color: #FF0; height: 8px;"></button>'+ '<button type="button" class="color" data-color="ffdd00" style="background-color: #FF0; height: 8px;"></button>'+ '<button type="button" class="color" data-color="ff7f00" style="background-color: #FF0; height: 8px;"></button>'+ '<button type="button" class="color" data-color="ff2b00" style="background-color: #FF0; height: 8px;"></button>'+ '<button type="button" class="color" data-color="4d2000" style="background-color: #FF0; height: 8px;"></button>'; 'use strict'; document.getElementById('undoButton').style.position = 'inherit'; // Your code here... })();