Reload

A simple Reload button

Wat is Reload?

Reload is een Chrome-extensie ontwikkeld door MK, en de belangrijkste functie is "A simple Reload button".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Reload

Download Reload-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 Reload button, for those who want one to the right of the Address Bar.  (Stop function not included; see below.)

To save RAM, the extension uses an event page rather than a persistent background page.  Hopefully it won't lag during heavy disk access.

For a Stop button, see:
https://chrome.google.com/webstore/detail/stop/kkeehnmfddjhlojogndpeaklfhaokkbn

***
Changelog

0.4: Updated icons to match Chrome's new Material theme.

0.3: Removed "tabs" permission.  Turns out it isn't needed to call chrome.tabs.reload.                    

Basisinformatie over de Extensie

Naam Reload Reload
ID fcofhoajikoooeongdbjbgnjpmgehgja
Officiële URL https://chromewebstore.google.com/detail/reload/fcofhoajikoooeongdbjbgnjpmgehgja
Beschrijving A simple Reload button
Bestandsgrootte 7.57 KB
Aantal Installaties 1,852
Huidige Versie 0.4
Laatst Bijgewerkt 2021-01-15
Publicatiedatum 2016-11-19
Beoordeling 4.32/5 Totaal 22 Beoordelingen
Ontwikkelaar MK
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Reload",
    "description": "A simple Reload button",
    "version": "0.4",
    "manifest_version": 2,
    "icons": {
        "16": "reload_16.png",
        "24": "reload_24.png",
        "32": "reload_32.png",
        "48": "reload_48.png",
        "128": "reload_128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": {
            "16": "reload_16.png",
            "24": "reload_24.png",
            "32": "reload_32.png"
        },
        "default_title": "Reload"
    }
}