Simple Stopwatch

Very simple, stupid stopwatch

What is Simple Stopwatch?

Simple Stopwatch is a Chrome extension developed by https://rozbicki.me, and its main feature is "Very simple, stupid stopwatch".

Extension Screenshots

screenshot

Download Simple Stopwatch Extension CRX File

Download Simple Stopwatch extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        v1.0

Very simple stopwatch/alarm with predefined alarms (2, 3, 5, 10, 15, 20, 25, 30 minutes)

Notes:
- this is a proof of concept
- please send your feature requests                    

Extension Basic Information

Name Simple Stopwatch Simple Stopwatch
ID cllcljeapohpjnhageklhknbhgpjfkkb
Official URL https://chromewebstore.google.com/detail/simple-stopwatch/cllcljeapohpjnhageklhknbhgpjfkkb
Description Very simple, stupid stopwatch
File Size 35 KB
Installation Count 402
Current Version 1.0
Last Updated 2017-04-17
Publish Date 2017-04-17
Rating 5.00/5 Total 2 Ratings
Developer https://rozbicki.me
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Simple Stopwatch",
    "description": "Very simple, stupid stopwatch",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "alarms",
        "notifications"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    }
}