Skip to content

Instantly share code, notes, and snippets.

@unsalkorkmaz
Last active November 11, 2019 11:12
Show Gist options
  • Save unsalkorkmaz/c18492eda53f15651c6f211d49727e35 to your computer and use it in GitHub Desktop.
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.
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);
}
@unsalkorkmaz
Copy link
Author

Ekran Görüntüsü

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment