Simple Favorites

Simple Favorites

Save screen space with a simple button to access all your favorites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Simple Favorites",
  "description": "Save screen space with a simple button to access all your favorites.",
  "version": "1.0",
  "content_scripts": [],
  "permissions": [
    "storage"
  ],
  "browser_action": {
    "default_popup": "simple_favorites.html",
    "default_icon": "favorites_icon19.png"
  },
  "optional_permissions": [
    "storage"
  ],
  "options_page": "simple_options.html",
  "icons": {
    "48": "favorites_icon48.png",
    "128": "favorites_icon128.png"
  }
}