BumbleBee_Kimono

Let User Easly Get Dom Path

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

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

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

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.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

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