Inspect and view changes in double-click highlighter source codes across current and past versions
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": "https://clients2.google.com/service/update2/crx",
"name": "double-click highlighter",
"version": "1.1.2",
"description": "Highlight a word by double click! This only works in github.com",
"manifest_version": 2,
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"*://github.com/*"
],
"js": [
"content.js"
]
}
],
"permissions": [
"webNavigation"
]
}