Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ Look up which actions apply to a URL of the current page and why.

Edit any page.

## Reload page

A simple button to reload a page.

## Installation

* Enable userscripts in Min and create a `userscripts` folder following [these instructions](https://github.com/minbrowser/min/wiki/userscripts), and copy script inside it.
Expand Down
12 changes: 12 additions & 0 deletions ReloadPage.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
// ==UserScript==
// @name Reload page (CTRL + R)
// @version 0.1
// @description just a "reload page" button
// @author mblithium
// @match *
// @run-at context-menu
// ==/UserScript==

(function() { 'use strict'; window.location.reload(true); })();

/* For more information: https://github.com/minbrowser/min/wiki/userscripts */