Skip to content

Instantly share code, notes, and snippets.

@moccos
Last active December 13, 2015 17:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save moccos/4946832 to your computer and use it in GitHub Desktop.
Save moccos/4946832 to your computer and use it in GitHub Desktop.
[Chrome] PartakeTitleCorrector:
{
"name": "Partake Title Naoshitaru",
"version": "0.0.1",
"manifest_version": 2,
"description": "そんなタイトル!修正してやる!",
"icons": {
"128": "icon128.png",
"48": "icon48.png"
},
"minimum_chrome_version": "13.0.0",
"permissions": [
"tabs", "http://partake.in/events/*"
],
"content_scripts": [
{
"matches": ["http://partake.in/events/*"],
"js": ["impl.js"]
}
]
}
document.title = "PARTAKE: " + document.body.getElementsByTagName("h1")[0].innerText;
// binary is here: http://www.moccos.info/_files/13/PartakeTitleCorrector.zip
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment