Highlights the #GoHabsGo hashtag in Twitter.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "http://clients2.google.com/service/update2/crx",
"name": "#GoHabsGo Twitter Highlighter",
"version": "0.4",
"manifest_version": 2,
"description": "Highlights the #GoHabsGo hashtag in Twitter.",
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"http://twitter.com/*",
"https://twitter.com/*"
],
"js": [
"jquery.js",
"hashtags.js"
]
}
],
"permissions": [
"tabs",
"https://twitter.com/",
"storage"
],
"icons": {
"16": "habs16.png",
"48": "habs48.png",
"128": "habs128.png"
},
"page_action": {
"default_name": "#GoHabsGo Hashtag Highlighter",
"default_icon": "habsicon.png",
"default_popup": "popup.html"
},
"web_accessible_resources": [
"habs.png",
"habsicon.png"
]
}