DOM Auto Refresh

Automatically refresh page when DOM has changed

Apa itu DOM Auto Refresh?

DOM Auto Refresh adalah ekstensi Chrome yang dikembangkan oleh kknordbo, dan fitur utamanya adalah "Automatically refresh page when DOM has changed".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi DOM Auto Refresh

Unduh file ekstensi DOM Auto Refresh dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama DOM Auto Refresh DOM Auto Refresh
ID ocmlgbpgpklpjaegeemejpafhbijgdkc
URL Resmi https://chrome.google.com/webstore/detail/dom-auto-refresh/ocmlgbpgpklpjaegeemejpafhbijgdkc
Deskripsi Automatically refresh page when DOM has changed
Ukuran File 70.32 KB
Jumlah Instalasi 503
Versi Saat Ini 0.0.1
Terakhir Diperbarui 2016-05-14
Tanggal Publikasi 2016-05-14
Penilaian 5.00/5 Total 2 Penilaian
Pengembang kknordbo
Tipe Pembayaran free
Bahasa yang Didukung 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
}