Simple Tab Timer

This extension creates a simple timer as a new tab.

Cos'è Simple Tab Timer?

Simple Tab Timer è un'estensione di Chrome sviluppata da Apes in Capes, e la sua funzione principale è "This extension creates a simple timer as a new tab.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Simple Tab Timer

Scarica i file di estensione Simple Tab Timer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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!                    

Informazioni di Base sull'Estensione

Nome Simple Tab Timer Simple Tab Timer
ID kfnnebepkloaefoekfghncjhfklhoffh
URL Ufficiale https://chrome.google.com/webstore/detail/simple-tab-timer/kfnnebepkloaefoekfghncjhfklhoffh
Descrizione This extension creates a simple timer as a new tab.
Dimensione del File 111 KB
Conteggio Installazioni 304
Versione Corrente 1.3.1
Ultimo Aggiornamento 2022-03-25
Data di Pubblicazione 2019-10-11
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore Apes in Capes
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.apesincapes.com
Lingue Supportate 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'"
}