google mp3

By ianux Last update Nov 13, 2006 — Installed 8,482 times. Daily Installs: 11, 5, 4, 12, 5, 14, 5, 11, 12, 9, 10, 3, 12, 8, 8, 11, 5, 7, 5, 3, 12, 7, 6, 10, 6, 13, 10, 9, 7, 4, 10, 9
// ==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);