Author Topic: Need Addon to Change Sites  (Read 561 times)

Offline Meomix

  • Member
  • Posts: 4993
  • For our glorious order
    • MAL
Need Addon to Change Sites
« on: November 07, 2010, 08:09:29 AM »
Is there a google chrome addon that can change the state of websites, like if a certain box on on the page is too small i can configure the addon to make the box a fixed width.
Did you know Satan was supposedly gods RIGHT HAND MAN, not his left. Blows your theory out of the water now doesn't it.

Offline Mcgreag

  • Member
  • Posts: 606
Re: Need Addon to Change Sites
« Reply #1 on: November 07, 2010, 08:18:26 AM »
For Firefox Greasemonkey could probably do something like that (but you need to know javascript and CSS to do it). Not sure if Google Chrome has anything similar, from what I understand Chrome is really behind in the addon department.
Memories are meant to fade. They're designed that way for a reason.

Offline kureshii

  • Former Staff
  • Member
  • Posts: 4485
  • May typeset edited light novels if asked nicely.
Re: Need Addon to Change Sites
« Reply #2 on: November 07, 2010, 08:25:52 AM »
Chrome already supports some scripting features (quite a few greasemonkey scripts work with it). Google for details.

Offline Sosseres

  • Member
  • Posts: 6701
  • A problem well stated is a problem half solved.
Re: Need Addon to Change Sites
« Reply #3 on: November 07, 2010, 08:27:09 AM »

Offline Meomix

  • Member
  • Posts: 4993
  • For our glorious order
    • MAL
Re: Need Addon to Change Sites
« Reply #4 on: November 07, 2010, 10:36:51 AM »
http://www.chromeboard.com/showpost.php?s=2e06fd36ff96eaeeadeee449c002da82&p=60873&postcount=8

Seems to be a solution. Not a chrome user so can't test.

It workkkkkkkkeeeeeeee eeeeeeeddddddd!!!!!!!!!!!!!!!!!!!!!!!! Woooo! After something like two hours i finally found the code.

body {
margin: 0px;
margin-top: 0px;
margin-right: -21px;
margin-bottom: 0px;
margin-left: -21px;
padding-top: 12px;
padding-right: 30px;
padding-bottom: 4px;
padding-left: 30px;
}

.smalltext {
font-family: verdana, sans-serif;
font-size: x-small;
width: 150px;
margin-left: none;
}

But the page returns back to normal when i do a refresh, how do i stop that.
« Last Edit: November 07, 2010, 10:59:33 AM by Meomix »
Did you know Satan was supposedly gods RIGHT HAND MAN, not his left. Blows your theory out of the water now doesn't it.

Offline Meomix

  • Member
  • Posts: 4993
  • For our glorious order
    • MAL
Re: Need Addon to Change Sites
« Reply #5 on: November 07, 2010, 06:44:14 PM »
Yesshhh found the solution for stopping css fail at refresh, didn't believe it at first.

body {
margin: 0px;
margin-top: 0px;
margin-right: -21px !important;
margin-bottom: 0px;
margin-left: -21px !important;
padding-top: 12px;
padding-right: 30px;
padding-bottom: 4px;
padding-left: 30px;
}

.smalltext {
width: 150px !important;
margin-left: none;
}
Did you know Satan was supposedly gods RIGHT HAND MAN, not his left. Blows your theory out of the water now doesn't it.