Inspect and view changes in 代码高亮切换器-Code highlight source codes across current and past versions
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": "代码高亮切换器-Code highlight",
"version": "1.1",
"description": "使用 highlight.js 对网页中的 code 标签进行高亮,可切换主题并开启/关闭高亮效果。",
"permissions": [
"storage",
"activeTab"
],
"action": {
"default_popup": "popup.html",
"default_icon": "icon.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"highlight/highlight.min.js",
"content.js"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"resources": [
"styles/*.css"
],
"matches": [
"<all_urls>"
]
}
]
}