google mp3

By ianux Last update Nov 13, 2006 — Installed 8,625 times. Daily Installs: 5, 3, 12, 7, 6, 10, 6, 13, 10, 9, 7, 4, 10, 9, 11, 11, 10, 15, 7, 8, 11, 9, 6, 3, 9, 7, 5, 10, 16, 4, 6, 5
// ==UserScript==
// @name          google mp3
// @namespace     
// @description   add google mp3 player to links
// @include       http://*
// @include       https://*
// ==/UserScript==
    var head,script
    head = document.getElementsByTagName('head')[0];
    if (!head) { return; }
    script = document.createElement('script');
    script.type = 'text/javascript';
    script.src = 'http://googlepage.googlepages.com/player.js'
    head.appendChild(script);