DOM Auto Refresh

Automatically refresh page when DOM has changed

O que é DOM Auto Refresh?

DOM Auto Refresh é uma extensão do Chrome desenvolvida por kknordbo, e sua principal característica é "Automatically refresh page when DOM has changed".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão DOM Auto Refresh

Baixe arquivos de extensão DOM Auto Refresh 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

                        Automatically refresh the page when there has been a change to DOM (Document Object Model). For instance, it will refresh a page if a "click to refresh" popup appears. A useful tool for keeping content up to date without any user interaction. Can also set an interval for how often the page should be refreshed.                    

Informações Básicas da Extensão

Nome DOM Auto Refresh DOM Auto Refresh
ID ocmlgbpgpklpjaegeemejpafhbijgdkc
URL Oficial https://chrome.google.com/webstore/detail/dom-auto-refresh/ocmlgbpgpklpjaegeemejpafhbijgdkc
Descrição Automatically refresh page when DOM has changed
Tamanho do Arquivo 70.32 KB
Contagem de Instalações 503
Versão Atual 0.0.1
Última Atualização 2016-05-14
Data de Publicação 2016-05-14
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor kknordbo
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "DOM Auto Refresh",
    "version": "0.0.1",
    "description": "Automatically refresh page when DOM has changed",
    "permissions": [
        "tabs",
        "storage"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "script.js"
    ],
    "manifest_version": 2
}