Simple Tab Timer

This extension creates a simple timer as a new tab.

O que é Simple Tab Timer?

Simple Tab Timer é uma extensão do Chrome desenvolvida por Apes in Capes, e sua principal característica é "This extension creates a simple timer as a new tab.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Simple Tab Timer

Baixe arquivos de extensão Simple Tab Timer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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!                    

Informações Básicas da Extensão

Nome Simple Tab Timer Simple Tab Timer
ID kfnnebepkloaefoekfghncjhfklhoffh
URL Oficial https://chrome.google.com/webstore/detail/simple-tab-timer/kfnnebepkloaefoekfghncjhfklhoffh
Descrição This extension creates a simple timer as a new tab.
Tamanho do Arquivo 111 KB
Contagem de Instalações 304
Versão Atual 1.3.1
Última Atualização 2022-03-25
Data de Publicação 2019-10-11
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor Apes in Capes
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://www.apesincapes.com
Idiomas Suportados 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'"
}