Search
Search titles only
By:
Search titles only
By:
Log in
Register
Search
Search titles only
By:
Search titles only
By:
Menu
Install the app
Install
Forums
New posts
All threads
Latest threads
New posts
Trending threads
Trending
Search forums
What's new
New posts
New ads
New profile posts
Latest activity
Free Ads
Latest reviews
Search ads
Members
Current visitors
New profile posts
Search profile posts
Contact us
Latest ads
📸 SIGMA 85mm F1.4 DG HSM | Art — Nikon Mount
romeshnonis
Updated:
Yesterday at 3:56 PM
Google AI PRO - 18 Month
Sanathbh
Updated:
Yesterday at 2:42 PM
Ad icon
Singapore V2Ray VPN for Tunneling
hu KANNA
Updated:
Monday at 9:03 PM
Plan your Crypto & Forex entries before you take the trade
romeshnonis
Updated:
Monday at 3:20 AM
RHCSA, RHCE, AWS, Docker, Kubernetes Training
Sanjeewani95
Updated:
Sep 8, 2026
Electronics
Vehicles
Property
Search
Reply to thread
Forums
Computers & Internet
Tips & Tricks
Customizations for Elakiri new UI
Get the App
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Message
<blockquote data-quote="Amos" data-source="post: 25408308" data-attributes="member: 558107"><p>Updated:</p><p>- add main links after search field</p><p>- reduce saturation of forum tag colors, increase font weight of titles</p><p style="text-align: center"></p> <p style="text-align: center"></p> <p style="text-align: center">[ATTACH=full]79419[/ATTACH]</p> <p style="text-align: center"></p> <p style="text-align: center"></p> <p style="text-align: center">[CODE=javascript]// ==UserScript==</p> <p style="text-align: center">// @name Elakiri Customizations</p> <p style="text-align: center">// @namespace elakiri-customizations</p> <p style="text-align: center">// @match *://elakiri.com/*</p> <p style="text-align: center">// @match *://*.elakiri.com/*</p> <p style="text-align: center">// @require https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js</p> <p style="text-align: center">// @grant none</p> <p style="text-align: center">// ==/UserScript==</p> <p style="text-align: center"></p> <p style="text-align: center"></p> <p style="text-align: center">this.$ = this.jQuery = jQuery.noConflict(true);</p> <p style="text-align: center">$(document).ready(function() {</p> <p style="text-align: center"></p> <p style="text-align: center"> //Customizations</p> <p style="text-align: center"> var ENABLE_EXPAND = true; // hide Menu and Sidebar, expand post width</p> <p style="text-align: center"> var ENABLE_LINKS = true; // add main links after search field</p> <p style="text-align: center"> var ENABLE_READABILITY_CHANGES = true; // reduce saturation of forum tag colors, increase font weight of titles</p> <p style="text-align: center"></p> <p style="text-align: center"> function expand() {</p> <p style="text-align: center"> if(!ENABLE_EXPAND) {</p> <p style="text-align: center"> return;</p> <p style="text-align: center"> }</p> <p style="text-align: center"></p> <p style="text-align: center"> var menuButton = document.getElementById('uix_sidebarNav--trigger'); // Menu on left</p> <p style="text-align: center"> if (menuButton) {</p> <p style="text-align: center"> menuButton.click();</p> <p style="text-align: center"> }</p> <p style="text-align: center"> var sidebarButton = document.getElementById('js-XFUniqueId3'); // Sidebar on right</p> <p style="text-align: center"> if (sidebarButton && sidebarButton.className.indexOf("uix_sidebarTrigger") > -1) {</p> <p style="text-align: center"> sidebarButton.click();</p> <p style="text-align: center"> }</p> <p style="text-align: center"> var expandButon = document.getElementById('uix_widthToggle--trigger'); // Expand width</p> <p style="text-align: center"> if (expandButon) {</p> <p style="text-align: center"> expandButon.click();</p> <p style="text-align: center"> }</p> <p style="text-align: center"> }</p> <p style="text-align: center"></p> <p style="text-align: center"> function addLinks() {</p> <p style="text-align: center"> if(!ENABLE_LINKS) {</p> <p style="text-align: center"> return;</p> <p style="text-align: center"> }</p> <p style="text-align: center"></p> <p style="text-align: center"> $('<div class="block-tabHeader tabs hScroller" data-xf-init="h-scroller" style="border-bottom: none;">' +</p> <p style="text-align: center"> ' <span class="hScroller-scroll is-calculated" style="margin-bottom: -40px;">' +</p> <p style="text-align: center"> ' <a href="/watched/threads" class="tabs-tab rippleButton">Watched</a>' +</p> <p style="text-align: center"> ' <a href="/find-threads/contributed" class="tabs-tab rippleButton">Contributed</a>' +</p> <p style="text-align: center"> ' <a href="/threads/trending" class="tabs-tab rippleButton">Trending</a>' +</p> <p style="text-align: center"> ' <a href="/threads/latest" class="tabs-tab rippleButton">Latest</a>' +</p> <p style="text-align: center"> ' <a href="/threads/newest" class="tabs-tab rippleButton">New posts</a>' +</p> <p style="text-align: center"> ' <a href="/forums/-/-/list" class="tabs-tab rippleButton">Forum list</a>' +</p> <p style="text-align: center"> ' </span>' +</p> <p style="text-align: center"> ' <i class="hScroller-action hScroller-action--end" aria-hidden="true"></i>' +</p> <p style="text-align: center"> ' <i class="hScroller-action hScroller-action--start" aria-hidden="true"></i>' +</p> <p style="text-align: center"> '</div>').insertBefore('.p-nav-opposite');</p> <p style="text-align: center"> }</p> <p style="text-align: center"></p> <p style="text-align: center"> function addReadabilityChanges() {</p> <p style="text-align: center"> if(!ENABLE_READABILITY_CHANGES) {</p> <p style="text-align: center"> return;</p> <p style="text-align: center"> }</p> <p style="text-align: center"></p> <p style="text-align: center"> $('<style>' +</p> <p style="text-align: center"> ' .label { opacity:0.5; }' +</p> <p style="text-align: center"> ' .structItem-title { font-weight: 700; }' +</p> <p style="text-align: center"> ' .is-unread .structItem-title { font-weight: 700; }' +</p> <p style="text-align: center"> '</style>').appendTo('body');</p> <p style="text-align: center"> }</p> <p style="text-align: center"></p> <p style="text-align: center"> expand();</p> <p style="text-align: center"> addLinks();</p> <p style="text-align: center"> addReadabilityChanges();</p> <p style="text-align: center"></p> <p style="text-align: center">});</p> <p style="text-align: center">[/CODE]</p> <p style="text-align: center"></p><p></p><p>[USER=357037]@rock pora[/USER]</p></blockquote><p></p>
[QUOTE="Amos, post: 25408308, member: 558107"] Updated: - add main links after search field - reduce saturation of forum tag colors, increase font weight of titles [CENTER] [ATTACH type="full"]79419[/ATTACH] [CODE=javascript]// ==UserScript== // @name Elakiri Customizations // @namespace elakiri-customizations // @match *://elakiri.com/* // @match *://*.elakiri.com/* // @require https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js // @grant none // ==/UserScript== this.$ = this.jQuery = jQuery.noConflict(true); $(document).ready(function() { //Customizations var ENABLE_EXPAND = true; // hide Menu and Sidebar, expand post width var ENABLE_LINKS = true; // add main links after search field var ENABLE_READABILITY_CHANGES = true; // reduce saturation of forum tag colors, increase font weight of titles function expand() { if(!ENABLE_EXPAND) { return; } var menuButton = document.getElementById('uix_sidebarNav--trigger'); // Menu on left if (menuButton) { menuButton.click(); } var sidebarButton = document.getElementById('js-XFUniqueId3'); // Sidebar on right if (sidebarButton && sidebarButton.className.indexOf("uix_sidebarTrigger") > -1) { sidebarButton.click(); } var expandButon = document.getElementById('uix_widthToggle--trigger'); // Expand width if (expandButon) { expandButon.click(); } } function addLinks() { if(!ENABLE_LINKS) { return; } $('<div class="block-tabHeader tabs hScroller" data-xf-init="h-scroller" style="border-bottom: none;">' + ' <span class="hScroller-scroll is-calculated" style="margin-bottom: -40px;">' + ' <a href="/watched/threads" class="tabs-tab rippleButton">Watched</a>' + ' <a href="/find-threads/contributed" class="tabs-tab rippleButton">Contributed</a>' + ' <a href="/threads/trending" class="tabs-tab rippleButton">Trending</a>' + ' <a href="/threads/latest" class="tabs-tab rippleButton">Latest</a>' + ' <a href="/threads/newest" class="tabs-tab rippleButton">New posts</a>' + ' <a href="/forums/-/-/list" class="tabs-tab rippleButton">Forum list</a>' + ' </span>' + ' <i class="hScroller-action hScroller-action--end" aria-hidden="true"></i>' + ' <i class="hScroller-action hScroller-action--start" aria-hidden="true"></i>' + '</div>').insertBefore('.p-nav-opposite'); } function addReadabilityChanges() { if(!ENABLE_READABILITY_CHANGES) { return; } $('<style>' + ' .label { opacity:0.5; }' + ' .structItem-title { font-weight: 700; }' + ' .is-unread .structItem-title { font-weight: 700; }' + '</style>').appendTo('body'); } expand(); addLinks(); addReadabilityChanges(); }); [/CODE] [/CENTER] [USER=357037]@rock pora[/USER] [/QUOTE]
Insert quotes…
Verification
Awruddata maasa keeyada?
Post reply
Top
Bottom