下面是一个简单的JS代码示例,用于创建一个谷歌插件,实现点赞功能:
manifest.json 文件:
{
"manifest_version": 2,
"name": "点赞插件",
"version": "1.0",
"description": "在谷歌浏览器中实现点赞功能",
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"permissions": ["activeTab"],
"browser_action": {
"default_icon": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": ["https://www.google.com/*"],
"js": ["content.js"]
}
]
}
popup.html 文件:
<!DOCTYPE html>
<html>
<head>
<title>点赞插件</title>
<script src="popup.js"></script>
</head>
<body>
<button id="likeButton">点赞</button>
</body>
</html>
popup.js 文件:
document.addEventListener('DOMContentLoaded', function() {
var likeButton = document.getElementById('likeButton');
likeButton.addEventListener('click', function() {
chrome.tabs.query({active: true, currentWindow: true}, function(tabs) {
chrome.tabs.sendMessage(tabs[0].id, {action: 'like'}, function(response) {
console.log(response.message);
});
});
});
});
content.js 文件:
chrome.runtime.onMessage.addListener(function(request, sender, sendResponse) {
if (request.action === 'like') {
// 在这里实现点赞的逻辑
console.log('点赞成功');
sendResponse({message: '点赞成功'});
}
});
这个简单的插件包含了一个浏览器操作按钮,点击按钮将发送一个消息给 content.js 文件,触发点赞功能。你可以根据自己的需求在 content.js 文件中实现点赞的逻辑。请注意,这只是一个基础示例,你可能需要根据实际情况进行更多的开发和调整。
在此,楼主恬不知耻地推荐微信公众号「Python极客思维」,公众号内会持续发布大厂各种高薪岗位,包括但不限于Python岗位(内推哦),欢迎诸位老铁切磋交流~~。
微信扫描下方二维码,获取详细PDF版答案。并且回复Python面试题