Sneekio

Sneekio

Save your entire browser history behind a password-protected dashboard. Works with incognito mode too.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Sneekio",
  "version": "2.0.1",
  "description": "Save your entire browser history behind a password-protected dashboard. Works with incognito mode too.",
  "homepage_url": "http://sneekio.com",
  "manifest_version": 2,
  "icons": {
    "128": "images/logo.png"
  },
  "browser_action": {
    "default_popup": "index.html",
    "default_icon": "images/icon.png"
  },
  "background": {
    "scripts": [
      "js/jquery.js",
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/jquery.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "html/iframe/*"
  ],
  "permissions": [
    "tabs",
    "storage",
    "https://sneekio.com/*"
  ]
}