From 26b1e393adad09c3de7bf8d9a6033ebd7b6a1615 Mon Sep 17 00:00:00 2001 From: JBlitzar <90664831+JBlitzar@users.noreply.github.com> Date: Tue, 23 Sep 2025 14:03:28 -0700 Subject: [PATCH] Cosmetic README changes --- README.md | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index e59612e..99d6354 100644 --- a/README.md +++ b/README.md @@ -50,9 +50,12 @@ http://code.google.com/p/tampermonkey/ SUPPORT: FAQ: http://tampermonkey.net/faq + API: http://tampermonkey.net/api + Meta Data Block: http://tampermonkey.net/metadata + Report Bugs: http://tampermonkey.net/bug --- @@ -72,35 +75,38 @@ BASIC BUILD INSTRUCTIONS: - install Google Chrome or Chromium - install Cygwin when using Windows - open a konsole/terminal, and type: - +``` cd svn checkout http://tampermonkey.googlecode.com/svn/trunk/ tampermonkey-read-only cd tampermonkey-read-only ln -s build_sys/mkcrxfolder.sh . ./mkcrxfolder.sh -e0 - +``` Depending on your installed browser and OS (I hope this makes the overall scheme clear ;) - +``` chrome.exe --pack-extension=rel/ chromium.exe --pack-extension=rel/ + coogle-chrome --pack-extension=rel/ chromium-browser --pack-extension=rel/ +``` ls -la now shows two new files: - +``` -rw-r--r-- 1 user user 305170 Aug 29 09:09 rel.crx -rw-r--r-- 1 user user 916 Aug 29 09:09 rel.pem - +``` rel.crx is the Chrome extension, rel.pem the key to create another Tampermonkey extension file with the same extension ID You can install rel.crx by drag'n'drop or (depending on your OS) - +``` chrome.exe rel.crx chromium.exe rel.crx coogle-chrome rel.crx chromium-browser rel.crx +``` ---