스마트에디터

스마트에디터

확장 프로그램으로 스마트에디터 편집을 더욱 간편하게!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "스마트에디터",
  "version": "0.2.11",
  "author": "NAVER Corp.",
  "description": "확장 프로그램으로 스마트에디터 편집을 더욱 간편하게!",
  "icons": {
    "16": "icon-16.png",
    "32": "icon-32.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "all_frames": true,
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "*://*/*",
    "clipboardRead"
  ],
  "manifest_version": 2
}