FTool

开发工具快捷链接集合

Ajankohdalta 8.3.2021. Katso uusin versio.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==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)
})();