New Tab Coin

New Tab Coin

This extension shows digital currency rates on new tab

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "New Tab Coin",
  "description": "This extension shows digital currency rates on new tab",
  "version": "0.0.4",
  "page_action": {
    "default_icon": "img/icon16.png",
    "default_title": "New Tab Coin"
  },
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "permissions": [
    "management",
    "storage"
  ],
  "chrome_url_overrides": {
    "newtab": "newtab.html"
  },
  "options_page": "options.html",
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  }
}