Play Store APK Downloader

Play Store APK Downloader

Download APK files directly from Google Play Store

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Play Store APK Downloader",
  "version": "1.0.1",
  "manifest_version": 2,
  "description": "Download APK files directly from Google Play Store",
  "icons": {
    "16": "icons/ic_launcher-16.png",
    "32": "icons/ic_launcher-32.png",
    "48": "icons/ic_launcher-48.png",
    "64": "icons/ic_launcher-64.png",
    "128": "icons/ic_launcher-128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "permissions": [
    "tabs",
    "storage",
    "http://*/*",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "scripts/contentscript.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "browser_action": {
    "default_icon": {
      "16": "icons/ic_launcher-16.png",
      "32": "icons/ic_launcher-32.png",
      "48": "icons/ic_launcher-48.png",
      "64": "icons/ic_launcher-64.png",
      "128": "icons/ic_launcher-128.png"
    },
    "default_title": "Download APK with Mobiledonia.com"
  },
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}