Skip to content

Instantly share code, notes, and snippets.

View christian-bromann's full-sized avatar
🕵️‍♂️
Testing All The Things™

Christian Bromann christian-bromann

🕵️‍♂️
Testing All The Things™
View GitHub Profile
@christian-bromann
christian-bromann / gist:5372928
Created April 12, 2013 15:35
activate keyboard bindings after page load on Google Maps APIv2
new GKeyboardHandler(map);
var mapContainer = document.getElementById("map_canvas");
GEvent.trigger(document, "click", {srcElement: mapContainer, target: mapContainer, nodeType: 1});
@christian-bromann
christian-bromann / Manifest.json
Created September 3, 2012 20:48
[Chrome Extension] Remove all cookie data
{
"manifest_version": 2,
"name": "MyExtension",
"version": "0.1",
"description": "My awesome chrome extension!",
"browser_action": {
"default_icon": "icon.png",
"default_popup": "index.html"
},
"background": {