Çağatay Karahan
Çağatay Karahan

Reputation: 55

Google Chrome extension changing CSS in a specific page

I am very new on Chrome extension development.

And this is my scnerio:

When user entered the specific page which is chosen by me. The extension add a CSS tag into a div.

The CSS tag is: text-transform: lowercase;

If there is a short tutorial for this I will pleased.

Thanks.

Upvotes: 2

Views: 463

Answers (1)

Pogrindis
Pogrindis

Reputation: 8091

You are better off adding it to the element style in chrome - it gives you a modified view of the area you have edited on the fly.

EDIT : To clarify, that is right clicking on the area you want to change and selecting "inspect element" then on the right hand side of the debug bar you will be able to enter "element styles"

Or course you should add the changed into the class or ID of it later on for release mode.

Upvotes: 1

Related Questions