This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Remove Facebook Feeds | |
// @version 2024-03-02 | |
// @author Jin-Cheng Guu | |
// @match https://www.facebook.com/* | |
// @description Remove feeds from the Facebook main page. | |
// ==/UserScript== | |
(function() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Remove Facebook Unfollowed Content | |
// @version 2024-03-02 | |
// @author Jin-Cheng Guu | |
// @match https://www.facebook.com/* | |
// @description Remove unfollowed content from the Facebook main page. | |
// ==/UserScript== | |
(function() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from datetime import datetime | |
import urllib2 | |
import urllib | |
import json | |
import os | |
def ajaxRequest(url=None): | |
""" | |
Makes an ajax get request. | |
url - endpoint(string) |