Keeping Tabs

Keeping Tabs

A chrome extension aiming to simplify the surplus of tabs in one's 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": "Keeping Tabs",
  "version": "0.1.6",
  "description": "A chrome extension aiming to simplify the surplus of tabs in one's browser",
  "icons": {
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "author": "Ryan Slocum",
  "browser_action": {
    "default_icon": "icons/128.png",
    "default_popup": "popup.html",
    "default_title": "Keeping Tabs"
  },
  "offline_enabled": true
}