URL logger

URL logger

This extension logs visited pages.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "URL logger",
  "short_name": "UrlLogger",
  "description": "This extension logs visited pages.",
  "version": "0.7",
  "icons": {
    "16": "icon16.png",
    "18": "icon18.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "scripts": [
      "content.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "icon18.png"
  },
  "permissions": [
    "tabs",
    "storage",
    "unlimitedStorage"
  ],
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  }
}