Apple Docs Force Default Language

Apple Docs Force Default Language

Forces Apple's developer documentation to always open in a specific language

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Apple Docs Force Default Language",
  "version": "0.0.1",
  "description": "Forces Apple's developer documentation to always open in a specific language",
  "homepage_url": "https://github.com/dimitarnestorov/apple-docs-force-default-language",
  "manifest_version": 2,
  "minimum_chrome_version": "74",
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "67.0"
    }
  },
  "icons": {
    "128": "icon.png"
  },
  "permissions": [
    "https://developer.apple.com/documentation/*",
    "webRequest",
    "webRequestBlocking",
    "storage"
  ],
  "options_ui": {
    "chrome_style": true,
    "page": "options.html"
  },
  "browser_action": {
    "default_title": "Apple Docs Force Default Language",
    "default_popup": "options.html"
  },
  "background": {
    "persistent": true,
    "scripts": [
      "browser-polyfill.min.js",
      "background.js"
    ]
  }
}