Reload All Tabs

Reloads all open tabs in one click.

Wat is Reload All Tabs?

Reload All Tabs is een Chrome-extensie ontwikkeld door itworks, en de belangrijkste functie is "Reloads all open tabs in one click.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Reload All Tabs

Download Reload All Tabs-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Reload All Tabs Reload All Tabs
ID lpkdnfkjhdkcpimadpdcgapffceacjem
Officiële URL https://chromewebstore.google.com/detail/reload-all-tabs/lpkdnfkjhdkcpimadpdcgapffceacjem
Beschrijving Reloads all open tabs in one click.
Bestandsgrootte 29.98 KB
Aantal Installaties 9,489
Huidige Versie 1.5.5.3
Laatst Bijgewerkt 2018-06-08
Publicatiedatum 2018-06-07
Beoordeling 4.05/5 Totaal 114 Beoordelingen
Ontwikkelaar itworks
Betalingswijze free
Ondersteunde Talen 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'"
}