helping on searching keywords with the best way by different colors on google website
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"name": "Highlight for google",
"version": "2.6resigned1",
"description": "helping on searching keywords with the best way",
"icons": {
"48": "images/highlighter.png"
},
"browser_action": {
"default_icon": {
"128": "images/highlighter.png"
},
"default_title": "Google Highlight",
"browser_style": true,
"default_popup": "popup/main.html"
},
"applications": {
"gecko": {
"id": "andrew-nageh@hotmail.com"
}
},
"content_scripts": [
{
"matches": [
"*://www.google.com/*"
],
"css": [
"css/highlight.css"
],
"js": [
"js/borderify.js"
]
}
],
"permissions": [
"activeTab",
"tabs"
]
}