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
🚀 Google AI PRO – 18 Months | Rs. 850 Only
lkkolla
Updated:
Yesterday at 4:56 PM
🔒 NordVPN Premium – 3 Months
hrdilshan
Updated:
Thursday at 8:29 PM
🚀 Microsoft Office 365 Pro Plus – Lifetime Access! 🚀
hrdilshan
Updated:
Thursday at 8:28 PM
Linkedin Premium Business / Careere /Sales Navigator - 1/2/3/6/9/12 Months - Reddem Link
hrdilshan
Updated:
Thursday at 8:27 PM
Colombo
YEYE 3 in 1 Instant Coffee Mix 50 Sachet
Romeshka
Updated:
Wednesday at 12:16 AM
Electronics
Vehicles
Property
Search
Reply to thread
Forums
General
ElaKiri Talk!
Shrink HighRes images on Elakiri
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="Hyaenidae" data-source="post: 20468171" data-attributes="member: 530392"><p><span style="font-size: 18px">මේ කෝඩ් එක මට නම් වැඩ, Chrome වලට.</span></p><p><span style="font-size: 18px">ටෙස්ට් කරන්න කැමති කට්ටිය ගන්න:</span></p><p></p><p>[CODE]// ==UserScript==</p><p>// @name ElakiriImagePWN By Hyaenidae</p><p>// @description Get rid of Highres images posted on Elakiri.com</p><p>// @include http://www.elakiri.lk*</p><p>// @include http://www.elakiri.com*</p><p>// ==/UserScript==</p><p></p><p></p><p>maxWidth = 790; </p><p></p><p>var vB = false;</p><p>var dtag = document.getElementsByTagName('div');</p><p>for (i=0; i<dtag.length; i++) {</p><p> if (dtag[i].className.indexOf('smallfont') > -1) {</p><p> if (dtag[i].innerHTML.indexOf('2006 - 2011 ElaKiri™ Beta2.Evo vBulletin') > -1) {</p><p> vB = true;</p><p> }</p><p> }</p><p>}</p><p>if (vB) {</p><p> var aSpan = document.getElementsByTagName('td');</p><p> for (i=0; i<aSpan.length; i++) {</p><p> if (aSpan[i].className == 'alt1') {</p><p> var aImg = aSpan[i].getElementsByTagName('img');</p><p> for (j=0; j<aImg.length; j++) {</p><p> aImg[j].style.maxWidth = maxWidth + 'px';</p><p> aImg[j].title = 'Click for the original size';</p><p> aImg[j].addEventListener('click', function(event) {</p><p> if (event.currentTarget.style.maxWidth == 'none')</p><p> event.currentTarget.style.maxWidth = maxWidth + 'px';</p><p> else</p><p> event.currentTarget.style.maxWidth = 'none';</p><p> }, false);</p><p> }</p><p> }</p><p> }</p><p>}[/CODE]</p><p></p><p><span style="font-size: 18px">Step 01: Download "Tampermonkey" From Chrome Store</span></p><p><span style="font-size: 18px"></span></p><p><span style="font-size: 18px"><a href="https://chrome.google.com/webstore/detail/tampermonkey/dhdgffkkebhmkfjojejmpbldmpobfkfo" target="_blank">https://chrome.google.com/webstore/detail/tampermonkey/dhdgffkkebhmkfjojejmpbldmpobfkfo</a></span></p><p><span style="font-size: 18px"></span></p><p><span style="font-size: 18px">Step 02: Click on "Tampermonkey" icon, choose "add a new script"</span></p><p><span style="font-size: 18px"></span></p><p><span style="font-size: 18px">Step 03: Delete the existing code, copy+paste the code provided</span></p><p><span style="font-size: 18px"></span></p><p><span style="font-size: 18px">Step 04: Click "Save" icon </span></p><p><span style="font-size: 18px"></span></p><p><span style="font-size: 18px">Load this thread and see if the code works: (make sure the code is enabled)</span></p><p><span style="font-size: 18px"></span></p><p><span style="font-size: 18px"><a href="http://www.elakiri.lk/forum/showthread.php?t=1753439" target="_blank">http://www.elakiri.lk/forum/showthread.php?t=1753439</a></span></p><p></p><p><img src="http://i.imgur.com/7di8KbP.png" alt="" class="fr-fic fr-dii fr-draggable " style="" /></p></blockquote><p></p>
[QUOTE="Hyaenidae, post: 20468171, member: 530392"] [SIZE="5"]මේ කෝඩ් එක මට නම් වැඩ, Chrome වලට. ටෙස්ට් කරන්න කැමති කට්ටිය ගන්න:[/SIZE] [CODE]// ==UserScript== // @name ElakiriImagePWN By Hyaenidae // @description Get rid of Highres images posted on Elakiri.com // @include http://www.elakiri.lk* // @include http://www.elakiri.com* // ==/UserScript== maxWidth = 790; var vB = false; var dtag = document.getElementsByTagName('div'); for (i=0; i<dtag.length; i++) { if (dtag[i].className.indexOf('smallfont') > -1) { if (dtag[i].innerHTML.indexOf('2006 - 2011 ElaKiri™ Beta2.Evo vBulletin') > -1) { vB = true; } } } if (vB) { var aSpan = document.getElementsByTagName('td'); for (i=0; i<aSpan.length; i++) { if (aSpan[i].className == 'alt1') { var aImg = aSpan[i].getElementsByTagName('img'); for (j=0; j<aImg.length; j++) { aImg[j].style.maxWidth = maxWidth + 'px'; aImg[j].title = 'Click for the original size'; aImg[j].addEventListener('click', function(event) { if (event.currentTarget.style.maxWidth == 'none') event.currentTarget.style.maxWidth = maxWidth + 'px'; else event.currentTarget.style.maxWidth = 'none'; }, false); } } } }[/CODE] [SIZE="5"]Step 01: Download "Tampermonkey" From Chrome Store [url]https://chrome.google.com/webstore/detail/tampermonkey/dhdgffkkebhmkfjojejmpbldmpobfkfo[/url] Step 02: Click on "Tampermonkey" icon, choose "add a new script" Step 03: Delete the existing code, copy+paste the code provided Step 04: Click "Save" icon Load this thread and see if the code works: (make sure the code is enabled) [url]http://www.elakiri.lk/forum/showthread.php?t=1753439[/url][/SIZE] [IMG]http://i.imgur.com/7di8KbP.png[/IMG] [/QUOTE]
Insert quotes…
Verification
Dahaya deken beduwama keeyada?
Post reply
Top
Bottom