Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name         New Userscript
  3. // @namespace    http://tampermonkey.net/
  4. // @version      0.1
  5. // @description  try to take over the world!
  6. // @author       You
  7. // @include      https://bfgsu.bitrix24.ru/*
  8. // @grant        none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12.     'use strict';
  13.     let els = document.querySelectorAll('.tasks-kanban-item-title, .task-title');
  14.     [].forEach.call(els, (el) => {
  15.         let id = el.href.match(/([0-9]+)(\/)?$/)[1];
  16.         el.innerHTML = "["+ id +"] " + el.innerHTML;
  17.     });
  18. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement