GoSats

GoSats

The best savings app. Period. Why? Because what's a better savings than that in bitcoin? GoSats is an extension you must have on…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "GoSats",
  "version": "0.2",
  "content_scripts": [
    {
      "matches": [
        "https://extension.gosats.io/*",
        "<all_urls>"
      ],
      "js": [
        "pop-up/global_variables.js",
        "content-scripts/inject.js",
        "content-scripts/index.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "assets/icon/icon16.png",
    "default_popup": "pop-up/pop_up.html"
  },
  "icons": {
    "16": "assets/icon/icon16.png",
    "48": "assets/icon/icon48.png",
    "128": "assets/icon/icon128.png"
  },
  "permissions": [
    "storage",
    "activeTab",
    "https://api.gosats.io/v1/*"
  ],
  "web_accessible_resources": [
    "pop-up/*",
    "assets/icon/*",
    "assets/fonts/*",
    "global_variables.js"
  ],
  "background": {
    "scripts": [
      "pop-up/global_variables.js",
      "background-scripts/apis.js",
      "background-scripts/index.js",
      "background-scripts/handle_pop_up.js",
      "background-scripts/helper_functions.js"
    ],
    "persistent": false
  }
}