Inspect and view changes in Pingcode 图片预览 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": "Pingcode 图片预览",
"version": "1.0",
"description": "Pingcode 下载按钮悬停预览图片",
"icons": {
"128": "icon.png"
},
"action": {
"default_popup": "popup.html",
"default_icon": "icon.png"
},
"content_scripts": [
{
"matches": [
"*://*.pingcode.com/*",
"*://*.fknt20240831040254329.pingcode.com/*",
"*://atlas.pingcode.com/*"
],
"js": [
"content.js"
]
}
],
"host_permissions": [
"*://*.pingcode.com/*",
"*://atlas.pingcode.com/*"
]
}