Rapunzel

Rapunzel

This extension shows a company search result for the current page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Rapunzel",
  "description": "This extension shows a company search result for the current page",
  "version": "0.99.0.1",
  "background": {
    "page": "background.html"
  },
  "manifest_version": 2,
  "browser_action": {
    "name": "Info",
    "icons": [
      "icon.png"
    ],
    "default_icon": "icon.png",
    "default_title": "Rapunzel by Finactum v0.99",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "jquery-2.0.2.min.js",
        "jquery.safeReplace.js",
        "background.js"
      ],
      "css": [
        "customStyles.css"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "permissions": [
    "http://beta.finactum.com/",
    "https://www.finactum.be/",
    "storage"
  ],
  "options_page": "popup.html"
}