from Helvetica to San Francisco

from Helvetica to San Francisco

Replaces Helvetica, Arial, Roboto with San Francisco, the System Font for OS X El Capitan. (Requirement: OS X 10.11 or later)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "from Helvetica to San Francisco",
  "short_name": "SF font",
  "version": "0.9.8.6",
  "manifest_version": 2,
  "permissions": [
    "fontSettings"
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "description": "Replaces Helvetica, Arial, Roboto with San Francisco, the System Font for OS X El Capitan. (Requirement: OS X 10.11 or later)",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "common.js"
      ],
      "run_at": "document_start"
    }
  ]
}