파이어폭스 전용 엔트리 이야기 사진 확장 프로그램입니다.
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,
"name": "knight",
"version": "0.1.4",
"description": "파이어폭스 전용 엔트리 이야기 사진 확장 프로그램입니다.",
"icons": {
"16": "icon/16.png",
"32": "icon/32.png",
"48": "icon/48.png",
"128": "icon/128.png"
},
"browser_specific_settings": {
"gecko": {
"id": "d7ms@outlook.kr"
}
},
"host_permissions": [
"https://playentry.org/*"
],
"permissions": [
"activeTab",
"storage",
"unlimitedStorage",
"clipboardWrite"
],
"content_scripts": [
{
"all_frames": true,
"matches": [
"https://playentry.org/*"
],
"css": [
"knight.css"
],
"js": [
"lib.js",
"knight.js",
"event.js"
]
}
]
}