Reload

A simple Reload button

What is Reload?

Reload is a Chrome extension developed by MK, and its main feature is "A simple Reload button".

Extension Screenshots

screenshot

Download Reload Extension CRX File

Download Reload extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Reload Reload
ID fcofhoajikoooeongdbjbgnjpmgehgja
Official URL https://chromewebstore.google.com/detail/reload/fcofhoajikoooeongdbjbgnjpmgehgja
Description A simple Reload button
File Size 7.57 KB
Installation Count 1,852
Current Version 0.4
Last Updated 2021-01-15
Publish Date 2016-11-19
Rating 4.32/5 Total 22 Ratings
Developer MK
Email [email protected]
Payment Type free
Supported Languages 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"
    }
}