Publisher UI Extension for MoPub

Publisher UI Extension for MoPub

Manage line items in MoPub dashboard

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Publisher UI Extension for MoPub",
  "version": "1.0.0",
  "description": "Manage line items in MoPub dashboard",
  "manifest_version": 2,
  "background": {
    "persistent": true,
    "scripts": [
      "lib/jquery-3.4.1.min.js",
      "lib/lodash-core.js",
      "lib/http.js",
      "js/helper/utils.js",
      "js/backgrounds/backgroundStatic.js",
      "js/backgrounds/notificationManager.js",
      "js/backgrounds/badgeManager.js",
      "js/backgrounds/loginHandler.js",
      "js/backgrounds/logoutHandler.js",
      "js/backgrounds/sessionHandler.js",
      "js/backgrounds/background.js"
    ]
  },
  "browser_action": {
    "default_icon": "img/default-logo.png",
    "default_title": "Publisher UI Extension for MoPub"
  },
  "icons": {
    "16": "img/logo-16.png",
    "48": "img/logo-48.png",
    "128": "img/logo-128.png"
  },
  "permissions": [
    "storage",
    "webRequest",
    "webRequestBlocking",
    "*://*.mopub.com/",
    "notifications"
  ]
}