Skip to content

Latest commit

 

History

History
88 lines (73 loc) · 2.73 KB

UserScript.md

File metadata and controls

88 lines (73 loc) · 2.73 KB

UserScript

UserScript Manager

Violentmonkey (v2.15.4 or above)

Tampermonkey

  • Can be used in Chrome, Brave, Edge, Firefox, Opera, etc.
  • Closed source (This repository contains the source of the Tampermonkey extension up to version 2.9. All newer versions are distributed under a proprietary license.)
  • GitHub: https://github.com/Tampermonkey/tampermonkey/ (Inactively Maintained)
  • Recommended
  • (This is the most popular one but actually this is closed source)
  • 99% userscripts can run in Tampermonkey without issues

Firemonkey

Stay

  • MacOS, Safari, iPhone, iPad, etc.
  • Open Source
  • GitHub: https://github.com/shenruisi/Stay
  • By China developer, and with Chinese Community
  • (You have no other good choice in Apple's stuff)

Userscripts

  • MacOS
  • Not Recommended because Stay is better

ScriptCat

Greasemonkey

UserScript Website

Guidelines

Standard Template

// ==UserScript==
// @name        Hello World
// @namespace   UserScripts
// @match       https://*/*
// @grant       none
// @version     0.1.0
// @author      Author
// @license     MIT
// @description Description Here
// @allFrames   true
// @unwrap
// @run-at document-start
// @inject-into page
// ==/UserScript==
(()=>{
  // TODO
})();