Huula Web Clipper

Super High Definition clipping and archiving of web pages.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Super High Definition clipping and archiving of web pages.",
  "version": "0.0.3",
  "name": "Huula Web Clipper",
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "icon-34.png"
  },
  "icons": {
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "css": [],
      "js": [
        "content.bundle.js"
      ]
    }
  ],
  "manifest_version": 2,
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "permissions": [
    "cookies",
    "*://*.huu.la/*",
    "tabs"
  ],
  "web_accessible_resources": [
    "clipboard.html",
    "clipboard.bundle.js"
  ]
}