cody123

Stan na 10-02-2017. Zobacz najnowsza wersja.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name         cody123
// @name:en      cody123
// @namespace    cody
// @version      1.0
// @description:en  testing
// @author       cody
// @license       MIT License
// ==/UserScript==

(function() {
    'use strict';

	$.getScript("https://maps.googleapis.com/maps/api/js?key=AIzaSyAlFR9IWx_HfMinS3mJZhAvGEtz-uz0aAs", function(){

		//var e1 = $('<div class="video smv tile h2 w3"></div>')
		//$(e1).insertAfter("#3-2");
		var e2 = $('<div id="map" style="height:500px"></div>');
		$('body').append(e2);

	        var map = new google.maps.Map(document.getElementById('map'), {
	          zoom: 13,
	          center: {lat: 34.04924594193164, lng: -118.24104309082031}
	        });

	        var trafficLayer = new google.maps.TrafficLayer();
	        trafficLayer.setMap(map);	
	});
});