Last active
November 11, 2019 11:12
-
-
Save unsalkorkmaz/c18492eda53f15651c6f211d49727e35 to your computer and use it in GitHub Desktop.
[ekşisözlük çaylaklar linki] Buradaki #javascript kodlarını https://chrome.google.com/webstore/detail/user-javascript-and-css/nbhcbdghjpllgmfilhnhkllmkecfmpld gibi bir eklenti ile eksisozluk için ekleyebilirsiniz. Sonucunda başlık altında seçenek olarak "çaylaklar" diye link eklenmiş olacak. O gün o konuya çaylakların attığı mesajlar listelenir.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if(document.getElementById('topic')) { | |
var entryurl = document.getElementById('title').getElementsByTagName('a')[0].getAttribute("href"); | |
var newElement = document.createElement('div'); | |
newElement.innerHTML = '<a href="' + entryurl + '?a=caylaklar' + '">çaylaklar</a>'; | |
newElement.id = 'caylaklar'; | |
var topicMenu = document.getElementById('in-topic-search-menu') | |
topicMenu.parentNode.insertBefore(newElement, topicMenu.nextSibling); | |
} |
Author
unsalkorkmaz
commented
Jun 15, 2019
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment