Inspect and view changes in 인스타 댓글 추출기 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": "인스타 댓글 추출기",
"description": "인스타그램 댓글을 엑셀로 추출하는 도구입니다. 댓글 작성자, 내용, 시간이 저장되며, 개발자 사이트 링크를 제공합니다.",
"version": "1.0",
"author": "Seol",
"permissions": [
"activeTab",
"downloads"
],
"host_permissions": [
"https://www.instagram.com/*",
"https://raw.githubusercontent.com/*"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
}
},
"content_scripts": [
{
"matches": [
"https://www.instagram.com/*"
],
"js": [
"xlsx.full.min.js",
"content.js"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"resources": [
"xlsx.full.min.js"
],
"matches": [
"https://www.instagram.com/*"
]
}
],
"background": {
"service_worker": "background.js"
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
}
}