Slides Timer
Create timers using placeholders. ie <<0:00+>>, <<5:00->>, <
O que é Slides Timer?
Slides Timer é uma extensão do Chrome desenvolvida por https://claycodes.org, e sua principal característica é "Create timers using placeholders. ie <<0:00+>>, <<5:00->>, <
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Slides Timer
Baixe arquivos de extensão Slides 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
Pause and restart timers with the d key. Reset timers with the e key. Add $ in a count down or up timer to start it in a paused state. More granular time formatting. Be sure to refresh your slides after you install for the timer to work. Slides Timer is an extension which will automatically bring timers to life in presented slides. Times placed between << and >> will be replaced with a timer. Use - as the last character to count down from the specified time. Use + to count up from the specified time. use <
Informações Básicas da Extensão
Nome | Slides Timer |
ID | nfhjdkmpebifdelclimjfaackjhiglpc |
URL Oficial | https://chromewebstore.google.com/detail/slides-timer/nfhjdkmpebifdelclimjfaackjhiglpc |
Descrição | Create timers using placeholders. ie <<0:00+>>, <<5:00->>, < |
Tamanho do Arquivo | 17.04 KB |
Contagem de Instalações | 111,747 |
Versão Atual | 1.27 |
Última Atualização | 2023-04-07 |
Data de Publicação | 2020-02-16 |
Classificação | 3.33/5 Total de 57 Avaliações |
Desenvolvedor | https://claycodes.org |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://www.claycodes.org/google-add-onsextensions |
URL da Página de Ajuda | https://www.claycodes.org/google-add-onsextensions |
URL da Página de Política de Privacidade | https://www.claycodes.org/home/privacy-policy |
Idiomas Suportados | en,es |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_appName__", "description": "__MSG_appDesc__", "default_locale": "en", "version": "1.27", "content_scripts": [ { "run_at": "document_start", "matches": [ "https:\/\/docs.google.com\/presentation*" ], "js": [ "contentscript.js" ] } ], "action": { "default_icon": { "19": "images\/icons\/19.png", "38": "images\/icons\/38.png" }, "default_popup": "popup.html" }, "icons": { "16": "images\/icons\/16.png", "19": "images\/icons\/19.png", "38": "images\/icons\/38.png", "64": "images\/icons\/64.png", "128": "images\/icons\/128.png" }, "offline_enabled": true } |