Skip to content

Instantly share code, notes, and snippets.

@kzelda
Created July 18, 2016 13:11
Show Gist options
  • Save kzelda/93f0785ee1969bff052812ecf39973ae to your computer and use it in GitHub Desktop.
Save kzelda/93f0785ee1969bff052812ecf39973ae to your computer and use it in GitHub Desktop.
Script GreaseMonkey / tampermonkey : Ouvrir les liens dans des fenetres séparées
// ==UserScript==
// @name le bon coin
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Ouvrir les liens dans des fenetres séparées
// @author kzelda
// @match https://www.leboncoin.fr/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
$("a.list_item").attr("target","_blank");
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment