This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| window.onload = function() { | |
| cleanIt(); | |
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| for (var i=0; i < myIds.length; i++) { | |
| try { | |
| var el = document.getElementById( myIds[i] ); | |
| el.parentElement.removeChild(el); | |
| } catch(e) {} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var myIds = ['hplogo', 'my-tiles','most-visited','hplogop', 'dood', 'prm', 'prm-pt','gbq1']; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var cleanIt = function() { | |
| var myIds = ['hplogo', 'my-tiles','most-visited','hplogop', 'dood', 'prm', 'prm-pt','gbq1']; | |
| for (var i=0; i < myIds.length; i++) { | |
| try { | |
| var el = document.getElementById( myIds[i] ); | |
| el.parentElement.removeChild(el); | |
| } catch(e) {} | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var cleanIt = function() { | |
| var myIds = ['hplogo', 'my-tiles','most-visited','hplogop', 'dood', 'prm', 'prm-pt','gbq1']; | |
| for (var i=0; i < myIds.length; i++) { | |
| try { | |
| var el = document.getElementById( myIds[i] ); | |
| el.parentElement.removeChild(el); | |
| } catch(e) {} | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "manifest_version": 2, | |
| "name":"simplegoogle", | |
| "version":"0.0.1", | |
| "description":"Remove doodle and text from Google.com", | |
| "icons":{ | |
| "128":"icons/icon128.png", | |
| "48":"icons/icon48.png" | |
| }, | |
| "homepage_url":"https://github.com/mkpt/simplegoogle", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <head> | |
| <title>simplegoogle</title> | |
| </head> | |
| <body> | |
| <div id="simplegoogle"></div> | |
| </body> | |
| </html> |