Reload All Tabs

Reloads all open tabs in one click.

Hvad er Reload All Tabs?

Reload All Tabs er en Chrome-udvidelse udviklet af itworks, og dens hovedfunktion er "Reloads all open tabs in one click.".

Udvidelsesskærmbilleder

screenshot

Download Reload All Tabs-udvidelses-CRX-fil

Download Reload All Tabs-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        A simple extension that gives you a button to reload all open tabs.

Features:
- Context menus and an option to reload pinned tabs only.
- Option to reload all tabs in all windows.                    

Grundlæggende oplysninger om udvidelsen

Navn Reload All Tabs Reload All Tabs
ID lpkdnfkjhdkcpimadpdcgapffceacjem
Officiel URL https://chromewebstore.google.com/detail/reload-all-tabs/lpkdnfkjhdkcpimadpdcgapffceacjem
Beskrivelse Reloads all open tabs in one click.
Filstørrelse 29.98 KB
Antal Installationer 9,489
Nuværende Version 1.5.5.3
Senest Opdateret 2018-06-08
Udgivelsesdato 2018-06-07
Bedømmelse 4.05/5 Samlet 114 Bedømmelser
Udvikler itworks
Betalingsmetode free
Understøttede Sprog en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Reload All Tabs",
    "version": "1.5.5.3",
    "description": "Reloads all open tabs in one click.",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/script.js"
            ]
        }
    ],
    "options_page": "options.html",
    "permissions": [
        "tabs",
        "contextMenus",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "browser_action": {
        "default_title": "Reload All Tabs",
        "default_icon": "icon19.png",
        "default_popup": "menu.html"
    },
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}