1 Star 1 Fork 2

183600 / 获取网页词频

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
manifest.json 659 Bytes
AI 代码解读
一键复制 编辑 原始数据 按行查看 历史
183600 提交于 2024-04-05 05:16 . 优化设置
{
"manifest_version": 3,
"name": "获取网页词频",
"version": "1.2",
"description": "本项目分析网站词频并生成词云图,原网页分析,基于chrome-extensions-samples-main修改,使用MIT许可开源,是一个Chrome扩展",
"background": {
"service_worker": "js/background.js"
},
"action": {
"default_popup": "popup.html",
"default_icon": "icon.png"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["js/content.js"]
}
],
"options_page": "options.html",
"icons": {"48": "icon48.png",
"128": "icon192.png" },
"permissions": [
"tabs",
"storage",
"activeTab"
]
}
1
https://gitee.com/qwe12345678/web-page-analysis.git
git@gitee.com:qwe12345678/web-page-analysis.git
qwe12345678
web-page-analysis
获取网页词频
master

搜索帮助