如何在Greasemonkey脚本中播放声音?

时间:2015-01-09 13:51:50

标签: javascript audio greasemonkey

如何在Greasemonkey脚本中播放声音?

我目前正在尝试做的是在达到条件时播放声音,例如:

// ==UserScript==
// @name Sound Alert
// @namespace example.com
// @include example.com/*
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
// @version 1
// @grant none
// ==/UserScript==

sound = new Audio("https://dl.dropbox.com/u/7079101/coin.mp3");

for (var i = 0; i <= 10; i++) {
  if (i === 10) {
    // Play a sound when i === 10
    sound.play();
  } else {
    console.log('Not yet!');
  }
}

我该怎么做?有没有办法这样做? 上面的代码无效!

3 个答案:

答案 0 :(得分:3)

好吧,似乎提问可以提高找出问题的正确答案的可能性(呵呵呵)。

这是我的解决方案:

// ==UserScript==
// @name    Sound Alert
// @include http://YOUR_SERVER.COM/YOUR_PATH/*
// @grant   none
// ==/UserScript==

var player = document.createElement('audio');
player.src = 'https://dl.dropbox.com/u/7079101/coin.mp3';
player.preload = 'auto';

for (var i = 0; i <= 10; i++) {
  if (i === 10) {
    // Play a sound when i === 10
    player.play();
  } else {
    console.log('Not yet!');
  }
}

答案 1 :(得分:0)

为了在GreaseMonkey脚本中播放声音,您必须遵循以下基本步骤:

步骤1:创建&#34;音频&#34;

类型的元素

步骤2:将source属性分配给文件位置。

var audio = document.createElement("audio");
audio.src = "https://dl.dropbox.com/u/7079101/coin.mp3";

答案 2 :(得分:0)

这是一个解决方案

var audioformsg = new Audio();
audioformsg.src = 'http://www.podst.ru/pix/user_files/2/5564/Click_08.mp3';
audioformsg.autoplay = true;

来自代码 https://greasyfork.org/zh-CN/scripts/8149-sound-for-message/code