hot questions tagged so-browser-enhancement - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T17:09:47Z http://stackoverflow.com/feeds/tag?tagnames=so-browser-enhancement&sort=hot http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1021445/stack-overflow-module-for-drupal 1 Stack Overflow module for Drupal [closed] mikl 2009-06-20T11:25:16Z 2009-06-20T13:01:27Z <p>I've made a nice little <a href="http://drupal.org/project/stackoverflow" rel="nofollow">Drupal module for Stack Overflow</a>. Currently it enables display of the Stack Overflow.</p> <p>The main advantage to just embedding the flair through JavaScript or iFrames is that this module uses Drupal's APIs for theming and caching, so it'll be faster and more performant, and in addition it should be a bit easier to set up instead of using custom blocks with raw code in them.</p> <p>In the future I'll add the ability for each user to fill in his Stack Overflow/Server Fault/SuperUser ID and have his flair(s) show up on his user profile.</p> <p>You can see the module in action and find more details in <a href="http://mikkel.hoegh.org/blog/2009/introducing-stack-overflow-module-drupal" rel="nofollow">my blog post about it</a>.</p> <p>Bugs, suggestions, etc. should be posted in the <a href="http://drupal.org/project/issues/stackoverflow" rel="nofollow">issue queue</a>.</p> <p>(This is not a question, but there's <a href="http://stackoverflow.com/questions/228759/stackoverflow-windows-taskbar-notifier">precedence</a> for posting Stack Overflow <a href="http://stackoverflow.com/questions/558672/stackoverflow-favorites-wordpress-plugin-sidebar-widget">implementations</a> here under the so-tool tag).</p> http://stackoverflow.com/questions/248296/what-third-party-tools-exist-to-use-with-stackoverflow 36 What Third Party Tools Exist To Use With Stackoverflow? [closed] jjnguy 2008-10-29T20:27:46Z 2009-07-16T20:39:28Z <p>For those that can't get enough of the official stuff...</p> <h1>What third party tools are there?</h1> <p><a href="http://stackoverflow.com/questions/18557/how-does-stackoverflow-work-the-unofficial-faq">Return to FAQ Index</a></p> http://stackoverflow.com/questions/59205/enhancing-stackoverflow-user-experience 16 Enhancing StackOverflow "user experience" [closed] PabloG 2008-09-12T15:02:45Z 2009-08-24T17:57:48Z <p>Like many of you, I spend a couple of hours a day checking SO questions (far more than I should ;) ). While I can simply subscribe to tag feeds, I feel that this way I'll loose many interesting questions and answers. </p> <p>I usually browse the questions sorted by "Newest", but this way is hard to remember if i saw an specific question, and is easy to miss a question of my favorite tags. Then, I made a little GreaseMonkey script to:</p> <ul> <li>Mark the questions that I seen (counting as "seen" all the questions of the actual page, not the entered links)</li> <li>Highlight my "favorite" tags to make it easier to spot quickly.</li> </ul> <p>I used it for a couple of days and it seems to work fine.</p> <p>Enhancements / bugfixes / suggestions welcome ;)</p> <p><strong>EDIT</strong>: added userscript <a href="http://userscripts.org/scripts/show/33601" rel="nofollow">link</a>, added User Script Command as suggested by @Sam</p> <p><strong>EDIT</strong>: modify "beta" in QUESTION_URL (StackOverflow out of beta!)</p> <p><strong>EDIT</strong>: change window.onload for direct call, faster response </p> <pre><code>// ==UserScript== // @name Stack Overflow highlight viewed questions // @namespace * // @include http://stackoverflow.com/questions // @include http://stackoverflow.com/questions?* // @include http://beta.stackoverflow.com/questions // @include http://beta.stackoverflow.com/questions?* // @version 0.55 (DOM-Ready instead of onload) // ==/UserScript== (function() { // Customizable items // var fav_tags = ["python", "database", "mysql"]; // Your favorite tags const UNSEEN_BACK_COLOR = "rgb(225,210,210)"; // Backcolor for the question already seen const FAV_TAG_BACK_COLOR = "rgb(210,210,225)"; // Backcolor for the favorite tags // Internal to the DOM // const QUESTION_URL = "http:\/\/beta.stackoverflow.com\/questions\/([0-9]+)\/"; const QUESTION_URL = "http:\/\/stackoverflow.com\/questions\/([0-9]+)\/"; const TAG_PREFIX = "show questions tagged "; const SEEN_MARK = "x"; // var seen_q = []; var seen_q_str = ""; var seen_q_str = GM_getValue ("seen_q", ""); var seen_q = seen_q_str.split("|"); var fav_tags_str = GM_getValue ("fav_tags", "") var fav_tags = fav_tags_str.split(" ") var already_run = false; GM_registerMenuCommand ("Set favorite tags", askTags); // window.addEventListener ("DOMContentLoaded", doStuff, false); if (! doStuff()) { window.addEventListener ("load", doStuff, false); } function doStuff() { var elements = window.document.getElementsByTagName('A'); if (! elements || already_run) { return false; } else { already_run = true; } // GM_log ("here"); for (elem = 0; elem &lt; elements.length; elem++) { if (elements[elem].href.match (QUESTION_URL)) { curr_q = RegExp.$1; // Already seen? if ((seen_q.length &lt; curr_q) || (seen_q [curr_q] != SEEN_MARK)) { elements[elem].style.backgroundColor = UNSEEN_BACK_COLOR; seen_q [curr_q] = SEEN_MARK; } // Is a favorite tag? node = elements[elem].parentNode.parentNode; for (tag = 0; tag &lt;= fav_tags.length; tag++) { if (node.innerHTML.match ("'" + fav_tags[tag] + "'")) { node.style.backgroundColor = FAV_TAG_BACK_COLOR; break; } } // return (0); } } seen_q_str = seen_q.join("|"); GM_setValue ("seen_q", seen_q_str); return true; } function askTags() { fav_tags_str = prompt("Favorite tags (separated by spaces)", fav_tags_str); GM_setValue ("fav_tags", fav_tags_str) } })(); </code></pre> http://stackoverflow.com/questions/22539/operator-user-script-for-stack-overflow 6 Operator user script for Stack Overflow [closed] Cebjyre 2008-08-22T14:46:23Z 2009-09-14T18:56:11Z <p>Inspired by <a href="http://beta.stackoverflow.com/questions/20830/firefox-users-here-is-your-stackoverflow-search-plugin" rel="nofollow">this post</a>, I've knocked together a user script to add Stack Overflow tag search to <a href="https://addons.mozilla.org/en-US/firefox/addon/4106" rel="nofollow">Operator</a> (a microformat plugin for firefox).</p> <p>Put this code </p> <pre><code>var stackoverflow = { description: "Search Tag on Stack Overflow", shortDescription: "Stack Overflow", icon: "http://stackoverflow.com/favicon.ico", scope: { semantic: {"tag" : "tag"}}, doAction: function(obj) {return "http://stackoverflow.com/questions/tagged/" + escape(obj.tag);} }; SemanticActions.add("stackoverflow", stackoverflow); </code></pre> <p>in a js file, and from the Operator options dialog, add it to the User Scripts section, then add the action in the Actions section and restart Firefox to get it to activate. You'll be able to right click a tags on an external site and search for posts matching that tag here.</p> http://stackoverflow.com/questions/85492/greasemonkey-users-here-is-your-vote-reputation-info-plug-in-for-stackoverflow 23 Greasemonkey users: Here is your vote/reputation info plug-in for StackOverflow [closed] Pat 2008-09-17T17:14:18Z 2009-05-02T23:01:13Z <p>I often wish my profile page on SO shows me the diff in votes for my questions / answers since last time I checked.</p> <p>Since the SO team has more important things to worry about I decided to add this myself using a greasemonkey script: <a href="http://userscripts.org/scripts/source/33891.user.js" rel="nofollow">Stack Overflow: New Votes</a>.</p> <p>After you install the script , the first time you visit your user page it remembers how many votes each of your questions/answers has.<br /> Upon every subsequent visit, if any of your questions has new up votes or down votes they are displayed next to the number [(+2) 14 votes] instead of just [14 votes].<br /> The data is saved locally and updated every time you visit you profile page.</p> <p>I have only tested with Firefox3 on WinXP but it should work across OSes and FF versions.</p> <p>I hope you find this useful, if you have any problems bugs / feature requests let me know in the answers. </p> <p>Cheers</p> <p>Edit: Now also shows the total reputation increase / decrease.</p>