Señalador

The last bookmarking add-on you will use.
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",
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "short_name": "__MSG_extensionName__",
  "version": "2.4.2",
  "default_locale": "en",
  "description": "__MSG_extensionDescription__",
  "homepage_url": "https://senalador.es",
  "icons": {
    "48": "icons/treasureChest_48.png",
    "96": "icons/treasureChest_96.png",
    "128": "icons/treasureChest_128.png",
    "256": "icons/treasureChest_256.png",
    "512": "icons/treasureChest.png"
  },
  "permissions": [
    "notifications",
    "storage",
    "tabs",
    "activeTab",
    "contextMenus"
  ],
  "page_action": {
    "browser_style": true,
    "default_icon": "icons/treasureChest_128.png",
    "default_title": "__MSG_saveInSenalador__"
  },
  "background": {
    "scripts": [
      "background/index.js",
      "background/messenger.js",
      "background/saveBookmark.js",
      "background/openDashboard.js"
    ]
  },
  "options_ui": {
    "page": "options/options.html"
  }
}