BumbleBee_Kimono

Let User Easly Get Dom Path

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

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

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

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

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

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.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

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