What I see

What I see

Show your friends the web page exactly as you see it

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "What I see",
  "description": "Show your friends the web page exactly as you see it",
  "version": "1.0.2",
  "permissions": [
    "activeTab",
    "tabs"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "js": [
        "string_hasher.js",
        "url_converter.js",
        "jquery.min.js",
        "aws-sdk.min.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "http://*/*/*",
        "https://*/*/*"
      ]
    }
  ],
  "browser_action": {
    "default_title": "What I see",
    "default_icon": {
      "19": "19icon.png",
      "38": "38icon.png"
    },
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "16icon.png",
    "48": "48icon.png",
    "128": "128icon.png"
  },
  "manifest_version": 2
}