Inspect and view changes in GitHub Text Search 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",
"manifest_version": 2,
"name": "GitHub Text Search",
"short_name": "GH Text",
"description": "Add a search text bar on current GitHub repo page.",
"author": "Alessandro Pischedda",
"version": "0.9.7",
"icons": {
"16": "images/icon16.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"content_scripts": [
{
"matches": [
"https://github.com/*"
],
"js": [
"js/content/key_events.js",
"js/content/view.js",
"js/content/storage.js",
"js/content/content.js"
],
"css": [
"css/content_style.css"
]
}
],
"background": {
"scripts": [
"js/background.js"
]
},
"browser_action": {
"default_icon": {
"16": "images/icon16.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"default_title": "GitHub Search extension",
"default_popup": "popup.html"
},
"permissions": [
"activeTab",
"storage",
"https://github.com/*"
]
}