kaiser1313
New Member
I'm not a skillful coder, that's why my explanation is going to be easy and basic.I want to make a personal Google Chrome extension that makes HTML changes in a web page i don't own. I don't care if it's non-optimized or ugly code. I just want to make it work. Write a lot, don't fear me.The code have to detects the variable "title="xxxx", and then it will add a change to the code.For example, if:\[code\]<div class="car"><a title="bmw"></a><div class="age"><p>2005</p>\[/code\]Then it's replaced with:\[code\]<div class="car"><a title="bmw"></a><div class="age"><p>250000$</p><p>2005</p>\[/code\]if:\[code\]<div class="car"><a title="mercedes"></a><div class="age"><p>1987</p>\[/code\]Then it's replaced with:\[code\]<div class="car"><a title="mercedes"></a><div class="age"><p>750000$</p><p>1987</p>\[/code\]