Chrome Tab Scheduler

Chrome Tab Scheduler

Allows you to schedule your tabs to be opened later. You can set up daily/weekly alarms to constantly open a set of tabs at 9:00am.…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/jquery-2.2.1.min.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "short_name": "tabScheduler",
  "name": "Chrome Tab Scheduler",
  "version": "0.0.1.5",
  "manifest_version": 2,
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab",
    "storage",
    "tabs",
    "identity",
    "identity.email",
    "http://textance.herokuapp.com/title/",
    "http://*/",
    "https://*/",
    "alarms"
  ]
}