网页文本摘抄与分析,快人一步
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "EasyRead",
"version": "1.0",
"description": "网页文本摘抄与分析,快人一步",
"permissions": [
"storage",
"activeTab",
"contextMenus"
],
"host_permissions": [
"<all_urls>"
],
"action": {},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"sidebar.html",
"sidebar.js",
"images/*.svg"
],
"matches": [
"<all_urls>"
]
}
],
"icons": {
"16": "images/icon.png",
"32": "images/icon.png",
"48": "images/icon.png",
"128": "images/icon.png"
}
}