FMKOREA FILTER

FMKOREA FILTER

유저가 원하지 않는 키워드나 게시판이 포텐에 노출되는 것을 방지합니다.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "FMKOREA FILTER",
  "version": "0.01",
  "description": "유저가 원하지 않는 키워드나 게시판이 포텐에 노출되는 것을 방지합니다.",
  "browser_action": {
    "default_title": "FMKOREA FILTER",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.fmkorea.com/*"
      ],
      "js": [
        "contentScripts.js"
      ],
      "run_at": "document_end"
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://www.fmkorea.com/*"
    ]
  },
  "manifest_version": 2
}