Chrome extension to delete a line inside script tag
up vote
0
down vote
favorite
There is a webpage that has a <script>
tag with a lot of functions.
I want to make a Chrome Extension in order to delete a specific line that appears many times in the script every time I access this website.
Is there a way to do that?
Ex.
<script>
function a()
var a = 10;
settimeout(10);
function b()
var b = 40;
settimeout(40);
</script>
I want to delete every settimeout
call.
javascript google-chrome-extension
add a comment |
up vote
0
down vote
favorite
There is a webpage that has a <script>
tag with a lot of functions.
I want to make a Chrome Extension in order to delete a specific line that appears many times in the script every time I access this website.
Is there a way to do that?
Ex.
<script>
function a()
var a = 10;
settimeout(10);
function b()
var b = 40;
settimeout(40);
</script>
I want to delete every settimeout
call.
javascript google-chrome-extension
1
there might be a way with a chrome extension i dont know, but could you just redefine the function?window.setTimeout = function(f) /* do nothing */ ;
– John Boker
Nov 9 at 19:05
Yes, redefine window.setTimeout as shown above, just make sure to do it in the web page context.
– wOxxOm
Nov 9 at 19:16
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
There is a webpage that has a <script>
tag with a lot of functions.
I want to make a Chrome Extension in order to delete a specific line that appears many times in the script every time I access this website.
Is there a way to do that?
Ex.
<script>
function a()
var a = 10;
settimeout(10);
function b()
var b = 40;
settimeout(40);
</script>
I want to delete every settimeout
call.
javascript google-chrome-extension
There is a webpage that has a <script>
tag with a lot of functions.
I want to make a Chrome Extension in order to delete a specific line that appears many times in the script every time I access this website.
Is there a way to do that?
Ex.
<script>
function a()
var a = 10;
settimeout(10);
function b()
var b = 40;
settimeout(40);
</script>
I want to delete every settimeout
call.
javascript google-chrome-extension
javascript google-chrome-extension
asked Nov 9 at 19:03
Agustin Luques
2617
2617
1
there might be a way with a chrome extension i dont know, but could you just redefine the function?window.setTimeout = function(f) /* do nothing */ ;
– John Boker
Nov 9 at 19:05
Yes, redefine window.setTimeout as shown above, just make sure to do it in the web page context.
– wOxxOm
Nov 9 at 19:16
add a comment |
1
there might be a way with a chrome extension i dont know, but could you just redefine the function?window.setTimeout = function(f) /* do nothing */ ;
– John Boker
Nov 9 at 19:05
Yes, redefine window.setTimeout as shown above, just make sure to do it in the web page context.
– wOxxOm
Nov 9 at 19:16
1
1
there might be a way with a chrome extension i dont know, but could you just redefine the function?
window.setTimeout = function(f) /* do nothing */ ;
– John Boker
Nov 9 at 19:05
there might be a way with a chrome extension i dont know, but could you just redefine the function?
window.setTimeout = function(f) /* do nothing */ ;
– John Boker
Nov 9 at 19:05
Yes, redefine window.setTimeout as shown above, just make sure to do it in the web page context.
– wOxxOm
Nov 9 at 19:16
Yes, redefine window.setTimeout as shown above, just make sure to do it in the web page context.
– wOxxOm
Nov 9 at 19:16
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53231847%2fchrome-extension-to-delete-a-line-inside-script-tag%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
there might be a way with a chrome extension i dont know, but could you just redefine the function?
window.setTimeout = function(f) /* do nothing */ ;
– John Boker
Nov 9 at 19:05
Yes, redefine window.setTimeout as shown above, just make sure to do it in the web page context.
– wOxxOm
Nov 9 at 19:16