Last active
November 30, 2015 15:45
-
-
Save jacob-faber/ac679082fdc2c79f8996 to your computer and use it in GitHub Desktop.
Chrome renamer Extension
This file contains 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": "Extension name", | |
"description": "Description", | |
"version": "1.0", | |
"content_scripts": [ | |
{ | |
"matches": [ | |
"https://www.seznam.cz/" | |
], | |
"js": [ | |
"rename.js" | |
], | |
"run_at": "document_end" | |
} | |
] | |
} |
This file contains 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
console.log('renaming'); | |
document.body.innerHTML = document.body.innerHTML.replace(/Email/g, 'THIS IS NOT EMAIL'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment