Simple Tab Timer

This extension creates a simple timer as a new tab.

Was ist Simple Tab Timer?

Simple Tab Timer ist eine Chrome-Erweiterung, die von Apes in Capes entwickelt wurde, und ihr Hauptmerkmal ist "This extension creates a simple timer as a new tab.".

Erweiterungsscreenshots

screenshot

Simple Tab Timer-Erweiterungs-CRX-Datei herunterladen

Laden Sie Simple Tab Timer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        If you're looking for a simple tab timer, this is it. Click on the icon, select the time, press START and you're off to the races.

Also, if you've found this extension helpful, tell your friends about it!                    

Grundlegende Informationen zur Erweiterung

Name Simple Tab Timer Simple Tab Timer
ID kfnnebepkloaefoekfghncjhfklhoffh
Offizielle URL https://chrome.google.com/webstore/detail/simple-tab-timer/kfnnebepkloaefoekfghncjhfklhoffh
Beschreibung This extension creates a simple timer as a new tab.
Dateigröße 111 KB
Installationsanzahl 304
Aktuelle Version 1.3.1
Letztes Update 2022-03-25
Veröffentlichungsdatum 2019-10-11
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler Apes in Capes
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://www.apesincapes.com
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Simple Tab Timer",
    "description": "This extension creates a simple timer as a new tab.",
    "version": "1.3.1",
    "icons": {
        "512": "icon512.png",
        "128": "icon128.png",
        "48": "icon48.png",
        "16": "icon16.png"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "icon512.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.google.com\/*",
                "http:\/\/www.google.com\/*",
                "https:\/\/www.google.ca\/*",
                "http:\/\/www.google.ca\/*",
                "https:\/\/www.google.co.uk\/*",
                "http:\/\/www.google.co.uk\/*",
                "https:\/\/www.google.se\/*",
                "http:\/\/www.google.se\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}