AutoBookmarks

AutoBookmarks

Save the visited pages and the download URLs in your bookmarks automatically.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "short_name": "__MSG_extName__",
  "version": "1.1.0.5",
  "default_locale": "en",
  "description": "__MSG_extDescription__",
  "icons": {
    "16": "img/autobookmark_16.png",
    "48": "img/autobookmark_48.png",
    "128": "img/autobookmark_128.png",
    "256": "img/autobookmark_256.png",
    "257": "img/autobookmark_256_off.png"
  },
  "browser_action": {
    "default_title": "__MSG_extName__",
    "default_icon": "img/autobookmark_256.png",
    "default_popup": "popup.html",
    "scripts": [
      "js/jquery.min.js",
      "js/functions.js",
      "js/popup.js"
    ]
  },
  "author": "Javi Filella",
  "homepage_url": "http://autobookmarks.txusko.com/",
  "background": {
    "scripts": [
      "js/jquery.min.js",
      "js/functions.js",
      "js/background.js"
    ],
    "persistent": false
  },
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "permissions": [
    "bookmarks",
    "storage",
    "history",
    "notifications",
    "activeTab",
    "tabs",
    "downloads",
    "*://*/*"
  ],
  "options_page": "options.html"
}