gpt4 book ai didi

javascript - 如何更改 Chrome 扩展程序的警报对话框标题

转载 作者:行者123 更新时间:2023-11-30 16:12:19 25 4
gpt4 key购买 nike

我是第一次编写 Google Chrome 扩展程序,我正在尝试使用 alert() 创建一个对话框,但是当它运行时我遇到了问题。标题不是扩展的名称 - 而是扩展 ID(“chrome-extension://..... says”)。

Screenshot

我希望标题说的是扩展名,而不是 ID。这是我的代码:

list .json

{
//Extension Details
"manifest_version": 2,
"name": "Test Extension",
"description": "Test Extension",
"version": "1.0",
"icons" :
{
"16": "PI-Logo.png",
"32": "PI-Logo.png",
"64": "PI-Logo.png"
},
//Main HTML Action
"browser_action":
{
"default_icon": "PI-Logo.png",
"default_popup": "popup.html"
},
//Permissions
"permissions":
[
"activeTab",
"https://ajax.googleapis.com/",
"<all_urls>"
],
"chrome_url_overrides":
{
"newtab" : "newtab.html"
},
//Scripts
"content_scripts":
[
{
"matches": ["http://www.google.com/*", "https://www.google.com/*"],
"js": ["myScript.js"]
}
],
"background":
{
"scripts": ["background.js"]
}
}

myScript.js

chrome.runtime.sendMessage("Hello World!");

background.js

chrome.runtime.onMessage.addListener(function(response, sender, sendResponse) {
alert(response);
});

我不太了解 javascript 或 HTML - 我在这方面是个业余爱好者。关于如何解决此问题的任何帮助将不胜感激。谢谢!

最佳答案

不,你不能。出于安全原因(钓鱼之类的),无法更改 JavaScript 警告框标题。

There is plenty of library for modal pop-up在 JavaScript 中,但在你的情况下,这可能很难,因为你必须将它注入(inject)所有页面......

另一种几乎可以满足您要求的方法是使用桌面通知 API。它会在屏幕右下角打开一个小弹出窗口,您可以自定义标题。 More information here .

关于javascript - 如何更改 Chrome 扩展程序的警报对话框标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36052869/

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