RR Helper

RR Helper

A collection of javascript functions to make working with Rich Relevance content easier.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "RR Helper",
  "version": "1.0.0.2",
  "manifest_version": 2,
  "description": "A collection of javascript functions to make working with Rich Relevance content easier.",
  "permissions": [
    "storage",
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "/js/common.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "page_action": {
    "default_icon": "/img/19_icon_light.png",
    "default_title": "RR Helper",
    "default_popup": "/pageAction/popup.html"
  },
  "icons": {
    "16": "/img/icon16.png",
    "48": "/img/icon48.png",
    "128": "/img/icon128.png"
  }
}