Skip to content

Instantly share code, notes, and snippets.

@jacob-faber
Last active November 30, 2015 15:45
Show Gist options
  • Save jacob-faber/ac679082fdc2c79f8996 to your computer and use it in GitHub Desktop.
Save jacob-faber/ac679082fdc2c79f8996 to your computer and use it in GitHub Desktop.
Chrome renamer Extension
{
"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"
}
]
}
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