Skip to content

Instantly share code, notes, and snippets.

@al1b
Created November 13, 2016 17:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save al1b/6bad3ad91447b2fcf59db5a9dacaa04f to your computer and use it in GitHub Desktop.
Save al1b/6bad3ad91447b2fcf59db5a9dacaa04f to your computer and use it in GitHub Desktop.
Linkedin Tahoma Font - Grease Monkey Script
// ==UserScript==
// @name Linkedn
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Automatically change font to Tahoma for rtl contents in LinkendIn.
// @author Ali Bahraminezhad - https://github.com/Dev-P
// @match https://*.linkedin.com/*
// @grant none
// ==/UserScript==
/* jshint -W097 */
'use strict';
var style = document.createElement("style");
style.innerHTML = "[dir='rtl']{font-family:Tahoma;}";
document.body.appendChild(style);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment