Greasy Fork

Greasy Fork is available in English.

FTool

开发工具快捷链接集合

目前为 2021-03-08 提交的版本。查看 最新版本

// ==UserScript==
// @name         FTool
// @namespace    http://www.theoft.cn/
// @version      0.1
// @description  开发工具快捷链接集合
// @author       Theo Ft
// @match        *://*/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    var div = document.createElement("div");
    div.innerHTML =
        '<div style="position: fixed;right: 0;top: 50%;margin-top: -50px;width: 100px;background-color: #e4f7ce;text-align: center;border: solid 1px #ccc;border-bottom-left-radius: 8px;border-top-left-radius: 8px;z-index: 999999;">'+
        '<a style="color: #755a19; text-decoration: none;display:block" href="https://tool.chinaz.com/tools/unixtime.aspx" target="timestamp">时间戳</a></div>'
    document.body.appendChild(div)
})();