Preceda Tweak - size of input box

Preceda Tweak - size of input box -- Donate: - Fund-raising for my IT creations - https://pledgie.com/campaigns/28629 Donate through pledgie.com or PayPal -- https://flattr.com/profile/pushka - Donate through flattr.com

目前為 2015-04-01 提交的版本,檢視 最新版本

// ==UserScript==
// @name        Preceda Tweak - size of input box
// @namespace   english
// @description Preceda Tweak - size of input box -- Donate: - Fund-raising for my IT creations -  https://pledgie.com/campaigns/28629 Donate through pledgie.com or PayPal --  https://flattr.com/profile/pushka - Donate through flattr.com
// @include     http*://*preceda.com.au*
// @version     1.1
// @run-at      document-end
// @grant       GM_addStyle
// ==/UserScript==




// Main - CSS hides two classes - video add box, and call to action box under it. - also social media

$(document).ready(function(){

var style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = '.toolbarinput,body{backgroud-color:red !important;}';
document.getElementsByTagName('head')[0].appendChild(style);





});