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.…

Vad är Chrome Tab Scheduler?

Chrome Tab Scheduler är en Chrome-tillägg utvecklad av sreimer15, och dess huvudfunktion är "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.…".

Ladda ner Chrome Tab Scheduler-förlängningens CRX-fil

Ladda ner Chrome Tab Scheduler-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.
You can add categories to your tabs so you have a better way of managing them.

Better manage your time with tabs that automatically open when you want them.                    

Grundläggande Information om Tillägg

Namn Chrome Tab Scheduler Chrome Tab Scheduler
ID knlojohbejddiffgpaeomgohemfdgagg
Officiell webbadress https://chrome.google.com/webstore/detail/chrome-tab-scheduler/knlojohbejddiffgpaeomgohemfdgagg
Beskrivning 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.…
Filstorlek 136 KB
Antal Installationer 72
Aktuell Version 0.0.1.5
Senast Uppdaterad 2016-06-09
Publiceringsdatum 2016-06-09
Betyg 1.00/5 Totalt 1 Betyg
Utvecklare sreimer15
Betalningssätt free
Tilläggswebbplats https://github.com/sreimer15/chromeTabScheduler
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "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"
    ]
}