APK Downloader

APK Downloader

APK Downloader Direct download apps of the Google apps store without using Google Play.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "scripts": [
      "js/jquery.min.js",
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_icon": "img/icon-48.png",
    "default_popup": "popup.html",
    "default_title": "__MSG_title__"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "js/content-script.js"
      ],
      "matches": [
        "https://play.google.com/store/apps/*"
      ],
      "run_at": "document_start"
    }
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "default_locale": "en",
  "description": "__MSG_description__",
  "homepage_url": "https://addons.mozilla.org/en-US/firefox/addon/apkgk-downloader/",
  "icons": {
    "32": "img/icon-32.png",
    "48": "img/icon-48.png",
    "128": "img/icon-128.png"
  },
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "omnibox": {
    "keyword": "apk"
  },
  "permissions": [
    "https://play.google.com/store/apps/*",
    "contextMenus",
    "tabs",
    "storage"
  ],
  "version": "2.0.6"
}