CommunityOverflow

By Avdi Grimm Last update Sep 23, 2008 — Installed 22 times. Daily Installs: 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0

There are 1 previous version of this script.

// ==UserScript==
// @name           CommunityOverflow
// @namespace      http://avdi.org
// @description    Makes the Stack Overflow "community owned wiki" link checked by default
// @include        http://stackoverflow.com/questions/*
// ==/UserScript==

var checkbox = document.getElementById("communitymode");
if(checkbox) {
  checkbox.checked = 'checked';
}