ASO Free Tool by AppTweak

ASO Free Tool by AppTweak

Enhance your ASO productivity when visiting the Apple Apps and Google Play Store.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "ASO Free Tool by AppTweak",
  "short_name": "AppTweak Extension",
  "version": "1.5.0",
  "description": "Enhance your ASO productivity when visiting the Apple Apps and Google Play Store.",
  "author": "AppTweak",
  "homepage_url": "https://www.apptweak.com?utm_source=chrome-extension&utm_medium=manifest&utm_campaign=manifest",
  "icons": {
    "48": "resources/icons/48x48.png",
    "128": "resources/icons/128x128.png"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "storage",
    "webRequest",
    "webNavigation",
    "scripting"
  ],
  "host_permissions": [
    "https://apps.apple.com/*",
    "https://play.google.com/store/apps/details*",
    "http://fonts.googleapis.com/",
    "https://fonts.googleapis.com/"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://apps.apple.com/*",
        "https://play.google.com/store/apps/details*",
        "https://play.google.com/store/apps/details?id=*"
      ],
      "js": [
        "libs/jquery-3.3.1.min.js",
        "libs/underscore.js",
        "libs/xregexp-all.js",
        "libs/extractOccurences.js",
        "libs/_languageData.js",
        "libs/guessLanguage.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "service_worker": "service_worker.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "datas/*",
        "libs/*",
        "client/*",
        "resources/*"
      ],
      "matches": [
        "https://apps.apple.com/*",
        "https://play.google.com/*"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "48": "resources/icons/48x48.png",
      "128": "resources/icons/128x128.png"
    },
    "default_title": "ASO Free Tool by AppTweak",
    "default_popup": "popup/popup.html"
  }
}