NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Facebook Ticker Enabler
// @description This will enable the ticker for Facebook (Also Please Watch this Video For Further Info https://youtu.be/uXcKFcxAs4M)
// @version 1.0
// @author allabouttech0803
// @license MIT
// @include *
// @require http://code.jquery.com/jquery-latest.js
// @match https://*.facebook.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
// Your code here...
$(document).ready(function() {
//alert('First');
document.getElementById("pagelet_ticker").className = "show";
$('#pagelet_ticker').css('height', '300px');
//alert('Now Click On Hide Side Bar and Again Click on Gear Icon');
});
})();