One Click Referral by RecordLinc

One Click Referral by RecordLinc

Simple way to show important notications of referrals

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "One Click Referral by RecordLinc",
  "description": "Simple way to show important notications of referrals ",
  "version": "1.6",
  "author": "varianceinfotech.com",
  "background": {
    "scripts": [
      "jquery.min.js",
      "scripts/helper.js",
      "scripts/CustomLocalStorage.js",
      "scripts/app_constants.js",
      "scripts/background_checkForNotifications.js",
      "scripts/retrive_user.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "scripts/app_constants.js",
        "jquery.min.js",
        "content.js"
      ],
      "all_frames": false,
      "run_at": "document_start"
    }
  ],
  "browser_action": {
    "default_icon": "icon16x16.png",
    "default_popup": "index.html"
  },
  "icons": {
    "16": "icon16x16.png",
    "48": "icon48x48.png",
    "128": "icon128x128.png"
  },
  "permissions": [
    "https://refer.oneclickreferral.com/*",
    "http://refer.oneclickreferral.com/*",
    "notifications"
  ],
  "web_accessible_resources": [
    "/images/*.*",
    "/html/*.*",
    "/fonts/*",
    "/css/*.css"
  ]
}