Greasy Fork is available in English.

SharePoint List / Library ID In List / Library Settings

07/10/2024, 22:38:20

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.

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

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        SharePoint List / Library ID In List / Library Settings
// @namespace   Eliot Cole Scripts
// @match       https://*.sharepoint.com/sites/*/_layouts/15/listedit.aspx*
// @grant       none
// @license     MIT
// @version     1.0
// @author      Eliot Cole
// @description 07/10/2024, 22:38:20
// @require     https://ajax.aspnetcdn.com/ajax/jquery/jquery-1.9.0.min.js
// ==/UserScript==

var DaListId = unsafeWindow._spPageContextInfo.listId.slice(1,-1);
console.log('Bongobongo: '+DaListId);

$('table#idItemHoverTable > tbody > tr:first-of-type').after('<tr><th scope="row" nowrap="nowrap" valign="top" id="500">ID:</th><td valign="top">'+DaListId+'</td></tr>');