用简单 JavaScript 写一个浏览器扩展(Chrome/Firefox),在访问 GitHub 时弹出提示“☕ Your code is great! But you need coffee. Take a break.”
// manifest.json
{
"name": "Coffee Break Helper",
"version": "1.0",
"permissions": ["activeTab"],
"background": {
"scripts": ["background.js"]
}
}
// background.js
chrome.webNavigation.onCompleted.addListener(function(details) {
if (details.url.includes("github.com")) {
chrome.tabs.executeScript(details.tabId, {
code: 'alert("☕ Your code is great! But you need coffee. Take a break.")'
});
}
});用简单 JavaScript 写一个浏览器扩展(Chrome/Firefox),在访问 GitHub 时弹出提示“☕ Your code is great! But you need coffee. Take a break.”
// manifest.json
{
"name": "Coffee Break Helper",
"version": "1.0",
"permissions": ["activeTab"],
"background": {
"scripts": ["background.js"]
}
}
// background.js
chrome.webNavigation.onCompleted.addListener(function(details) {
if (details.url.includes("github.com")) {
chrome.tabs.executeScript(details.tabId, {
code: 'alert("☕ Your code is great! But you need coffee. Take a break.")'
});
}
});