Skip to content

Instantly share code, notes, and snippets.

Created July 28, 2012 21:08
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 anonymous/3194790 to your computer and use it in GitHub Desktop.
Save anonymous/3194790 to your computer and use it in GitHub Desktop.
MoA Serial Poster Chrome Extension
0)
Create a folder anywhere in your PC and create the text-only files contained in this Gist
**attention to the extensions**
- manifest.json
- block-serial-posters.js
- jquery.js
1)
Go to Chrome Extensions
chrome://chrome/extensions/
2)
Enable the "Developer Mode"
3)
Click "Load Unpacked Extension"
:)
Select the MoA folder, voilà
jQuery(document).ready( function($)
{
// ADD AS MANY VERBORRAGIC FOLKS YOU WISH
// At each addition/removal, the Extension has to be *Reloaded*
$('p.posted:contains("Posted by: Exact Name")').parent().remove();
$('p.posted:contains("Posted by: anotherExactName")').parent().remove();
});
FOR YOUR OWN PEACE OF MIND, OPEN THE FOLLOWING LINK,
http://code.jquery.com/jquery-latest.min.js
COPY ALL THE CODE AND PASTE HERE REPLACING ALL THIS EXPLANATION LINES
{
"name": "Moon of Alabama",
"version": "1.0",
"manifest_version": 1,
"content_scripts": [{
"matches": ["http://www.moonofalabama.org/*"],
"js": ["jquery.js","block-serial-posters.js"]
}]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment