Inspect and view changes in Photor: 让你的截图不再单调 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
{
"manifest_version": 3,
"version": "1.0.0",
"name": "Photor: è®©ä½ çš„æˆªå›¾ä¸å†å•è°ƒ",
"description": "Photor 是一款使用简å•ä½†åŠŸèƒ½å¼ºå¤§çš„æµè§ˆå™¨æˆªå›¾æ’件。摆脱å•è°ƒçš„截图体验,å³åˆ»ä½¿ç”¨ï¼Œå¼€å§‹åˆ›å»ºæ¼‚亮且富有创æ„的截图å§ã€‚",
"background": {
"service_worker": "./background.js"
},
"action": {
"default_popup": "./popup.html"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"./photor_sceen_shot.js"
]
},
{
"matches": [
"https://*.photor.fun/*"
],
"js": [
"./photor_content_script.js"
],
"run_at": "document_end"
}
],
"icons": {
"16": "./icon/icon-32.png",
"32": "./icon/icon-64.png",
"48": "./icon/icon-96.png",
"128": "./icon/icon-128.png"
},
"permissions": [
"activeTab",
"storage"
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}