Dog Ear

Dog Ear

A chrome extension to temporarily bookmark tabs to declutter your browser

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Dog Ear",
  "author": "hjylewis",
  "version": "1.2.2",
  "description": "A chrome extension to temporarily bookmark tabs to declutter your browser",
  "icons": {
    "16": "icons/icon-16.png",
    "24": "icons/icon-24.png",
    "32": "icons/icon-32.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "browser_action": {
    "default_icon": {},
    "default_title": "Dog Ear this tab"
  },
  "permissions": [
    "tabs",
    "storage",
    "contextMenus",
    "notifications"
  ],
  "chrome_url_overrides": {
    "newtab": "dist/newtab/index.html"
  },
  "background": {
    "scripts": [
      "dist/popup/bundle.js"
    ],
    "persistent": false
  },
  "commands": {
    "dog-ear-tab": {
      "suggested_key": {
        "default": "Ctrl+Shift+S"
      },
      "description": "Dog Ear tab"
    }
  }
}