Readable Font

Readable Font

가독성 좋은 글씨를 보여줍니다.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Readable Font",
  "version": "1.1.0",
  "manifest_version": 2,
  "description": "가독성 좋은 글씨를 보여줍니다.",
  "icons": {
    "16": "[email protected]",
    "32": "[email protected]",
    "128": "[email protected]"
  },
  "browser_action": {
    "default_title": "Readable Font",
    "default_popup": "popup/popup.html",
    "default_icon": "[email protected]"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "match_about_blank": true,
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "js": [
        "contents/content.js"
      ]
    }
  ],
  "permissions": [
    "storage",
    "<all_urls>"
  ],
  "web_accessible_resources": [
    "contents/*.css",
    "contents/*.woff2"
  ],
  "options_ui": {
    "page": "options/options.html"
  }
}