Inspect and view changes in AutoFocus Pro 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": "AutoFocus Pro",
"description": "Automatically focus text boxes! Remembers your focus!",
"version": "1.1",
"icons": {
"48": "icon-48.png",
"128": "icon-128.png"
},
"permissions": [
"storage",
"tabs"
],
"background": {
"scripts": [
"js/jquery.js",
"js/events.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"js/jquery.js",
"js/jquery-ui.js",
"bootstrap/js/bootstrap.min.js",
"js/getsearch.js"
],
"css": [
"css/content.css"
],
"run_at": "document_end"
}
],
"browser_action": {
"default_icon": "icon-19.png",
"default_popup": "popup.html"
}
}