To install:
git clone https://gist.github.com/10318477.git
- In Chrome, navigate to Menu -> Tools -> Extensions.
- Click "Load Unpacked Extension" (requires the Developer Mode checkbox checked) and point to the directory you cloned the gist into.
.DS_Store |
setInterval(function() { | |
window.SESSION_REFRESH = true; | |
}, 15000); |
{ | |
"name": "Rackspace Persistant Login", | |
"version": "1.0.0", | |
"manifest_version": 2, | |
"description": "Prevent your browser from automatically logging out of the Rackspace Cloud Control Panel.", | |
"icons": { | |
"128": "icon.png" | |
}, | |
"content_scripts": [ | |
{ | |
"matches": [ | |
"http://*.rackspace.com/*", | |
"https://*.rackspace.com/*", | |
"http://*.rackspace.com/", | |
"https://*.rackspace.com/", | |
"http://*.rackspace.net/*", | |
"https://*.rackspace.net/*", | |
"http://*.rackspace.net/", | |
"https://*.rackspace.net/" | |
], | |
"js": ["content_script.js"] | |
} | |
], | |
"permissions": [ | |
"tabs", | |
"http://*.rackspace.com/*", | |
"https://*.rackspace.com/*", | |
"http://*.rackspace.com/", | |
"https://*.rackspace.com/", | |
"http://*.rackspace.net/*", | |
"https://*.rackspace.net/*", | |
"http://*.rackspace.net/", | |
"https://*.rackspace.net/" | |
] | |
} |