this post was submitted on 27 Jun 2023
24 points (100.0% liked)

Opensource

10 readers
1 users here now

This magazine is dedicated to discussions on open source software, hardware, and technology. Whether you are a developer, a tech enthusiast, or simply interested in the philosophy of open source, this is the place for you. Here you can share your knowledge, ask questions, and engage in discussions on topics such as open source programming languages, operating systems, hardware, and more. From the benefits and challenges of open source to the latest developments and trends, this category covers a wide range of topics related to open source.

founded 2 years ago
 

Since Greasemonkey is no longer being updated and /kbinStyles has been thriving, with people creating a lot of userscript for added functionality, I thought I should introduce Violentmonkey here. It is a really good opensource alternative for Tampermonkey and works well.

Supported browsers: Firefox, Chrome, Edge, Opera

You can check it out here: https://violentmonkey.github.io/

top 7 comments
sorted by: hot top controversial new old
[–] Infiltrated_ad8271@kbin.social 3 points 1 year ago* (last edited 1 year ago) (1 children)

If you look for information about it (edit: of violentmonkey) years ago you will probably find negative reviews, as it had an ambiguous privacy policy that generated many suspicions and accusations; but they fixed it a long ago, it is an excellent addon.

[–] LollerCorleone@kbin.social 1 points 1 year ago (1 children)

If you are talking about tampermonkey, I am sure it is a good addon. But it is no longer opensource. This post was meant for people who prefer opensource over proprietary as much as possible.

[–] Infiltrated_ad8271@kbin.social 2 points 1 year ago (1 children)

Nope, my whole comment was about violentmonkey. Take a look at this.

[–] LollerCorleone@kbin.social 2 points 1 year ago

Interesting, thanks.

[–] pvq@kbin.social 2 points 1 year ago (2 children)

One of the things I used violentmonkey for was to redirect any reddit url to the old reddit.

Example

// ==UserScript==
// @name        Old reddit redirect
// @namespace   Violentmonkey Scripts
// @match       https://www.reddit.com/*
// @grant       none
// @version     1.0
// @author      -
// @description 10/8/2022, 8:20:18 PM
// ==/UserScript==

var str = window.location.href;
window.location.replace(str.replace("www.reddit.com", "old.reddit.com"));

If you use any google service, take a look at Google Shut Up!

load more comments
view more: next ›