Pomodoro Timer

A new-tab page that helps you focus on completing your work.

Vad är Pomodoro Timer?

Pomodoro Timer är en Chrome-tillägg utvecklad av Unknown, och dess huvudfunktion är "A new-tab page that helps you focus on completing your work.".

Tilläggsskärmbilder

screenshot

Ladda ner Pomodoro Timer-förlängningens CRX-fil

Ladda ner Pomodoro Timer-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

                        A new tab page that helps you focus on completing your goals at work. 
Use your countdown timer to keep yourself on track by setting a goal for how long you want to work on each task.
The extension icon shows a badge that displays how much time you have remaining to complete your current task.
This extension also records the number of tasks you've completed every day (called "streaks") so you can compare your productivity every day to your average working day.                    

Grundläggande Information om Tillägg

Namn Pomodoro Timer Pomodoro Timer
ID hcfahcbjaolpfghelfanfepghajfbkdg
Officiell webbadress https://chromewebstore.google.com/detail/pomodoro-timer/hcfahcbjaolpfghelfanfepghajfbkdg
Beskrivning A new-tab page that helps you focus on completing your work.
Filstorlek 1.54 MB
Antal Installationer 811
Aktuell Version 0.0.0.3
Senast Uppdaterad 2017-10-21
Publiceringsdatum 2017-10-21
Betyg 1.80/5 Totalt 5 Betyg
Utvecklare Unknown
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Pomodoro Timer",
    "version": "0.0.0.3",
    "description": "A new-tab page that helps you focus on completing your work.",
    "icons": {
        "16": "images\/streak16.png",
        "32": "images\/streak32.png",
        "48": "images\/streak48.png",
        "128": "images\/streak128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/streak16.png",
            "32": "images\/streak32.png",
            "48": "images\/streak48.png",
            "128": "images\/streak128.png"
        },
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "chrome_url_overrides": {
        "newtab": "newTab.html"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "incognito": "spanning",
    "permissions": [
        "activeTab",
        "https:\/\/ajax.googleapis.com\/",
        "storage"
    ]
}