gpt4 book ai didi

javascript - 你如何让 chrome 扩展程序随机启动?

转载 作者:行者123 更新时间:2023-11-30 13:01:03 25 4
gpt4 key购买 nike

我做了一个 chrome 扩展。它非常简单。有一系列的赞美,当有人点击扩展并将其打印出来时,我随机抽出一个。我还使用 chrome tts(文本到语音)大声说出赞美。这很简单,但是......

我希望它在没有人点击 chrome 扩展程序的情况下随机给你一个赞美。这可能吗?我做了一些研究但没有成功。这是我的代码:

弹出.js:

$(document).ready(function() {
var compliments = ['You are awesome.', 'Looking good.'];

var randomCompliment = Math.floor(Math.random()*compliments.length);

$('#compliment').append('<li>' + compliments[randomCompliment] + '</li>');

chrome.tts.speak(compliments[randomCompliment])
});

list .json:

{
"manifest_version": 2,

"name": "Complimentor",
"description": "This extension gives you a compliment.",
"version": "1.0",

"browser_action": {
"default_icon": {
"19": "icon_19.png",
"38": "icon_38.png"
},
"default_title": "Complimentor",
"default_popup": "popup.html"
},
"permissions": ["tts"]
}

popup.html:

<!doctype html>
<html>
<head>
<script src="jquery.js"></script>
<script src="popup.js"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="popup">
<div id="highlight"></div>
<ul id="compliment"></ul>
</div>
</body>
</html>

样式.css:

body { 
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0.1))); /* Chrome,Safari4+ */
}

.popup {
width: 300px;
font: 14px helvetica-neue, helvetica, sans-serif;
color: #666;
position: relative;
text-align: center;
}

#hightlight {
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,.3)), color-stop(100%, rgba(255,255,255,0))); /* Chrome,Safari4+ */
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
}
.popup ul {
list-style: none;
margin: 0;
padding: 0;
}

.popup li {
padding: 3px 0;
}

最佳答案

目前还没有办法以编程方式打开 Chrome 扩展程序弹出窗口。但是您可以使用桌面通知来显示通知,并且在测试版 Chrome 中,有丰富的通知。您可以使用后台脚本来随机设置超时,当它超时时,您可以让它创建通知并播放声音。

引用链接:

Chrome Desktop Notifications

Rich Notifications

Background Pages

关于javascript - 你如何让 chrome 扩展程序随机启动?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17395336/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com