BumbleBee_Kimono

Let User Easly Get Dom Path

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği indirebilmeniz için ayrıca Tampermonkey gibi bir eklenti kurmanız gerekmektedir.

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

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.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==UserScript==
// @name          BumbleBee_Kimono
// @namespace     BumbleBee
// @version       1.1.6
// @author        GuanJyunChen
// @description   Let User Easly Get Dom Path
// @include       172.16.58.7/kimono/*
// @require       http://code.jquery.com/jquery-2.2.0.min.js
// @require       https://ajax.googleapis.com/ajax/libs/angularjs/1.5.0-rc.2/angular.min.js
// @resource      customFontCSS css/kimono-toolbar-fonts.min.css
// @resource      customCss     css/kimono-toolbar.min.css
// @grant         GM_addStyle
// @grant         GM_getResourceText
// ==/UserScript==


var newFontCSS = GM_getResourceText ("customFontCSS");
GM_addStyle (newFontCSS);

var newCSS     = GM_getResourceText ("customCss");
GM_addStyle (newCSS);

var input=document.createElement("input");
input.type="button";
input.value="GreaseMonkey Button";
input.onclick = showAlert;
document.body.appendChild(input); 
 
function showAlert()
{
    alert("Hello World");
}