The Extension to Restore Sanity
Delete superfluous political riff-raff from news sites.
什麼是The Extension to Restore Sanity?
The Extension to Restore Sanity是由William Silversmith開發的Chrome擴展程式,該擴展的主要功能是“Delete superfluous political riff-raff from news sites.”。
擴展截圖
下載The Extension to Restore Sanity擴展crx文件
下載The Extension to Restore Sanity擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
It’s election season. I know. You know. You can’t help but know, because there is a constant stream of bullshit streaming off the presses. Some of it (a vanishingly small percentage) is legitimate policy discussion or calls to action. Most of it simply horse-racing, tribalism, putting minor points under a magnifying glass, or things that would not even be newsworthy in a rational society. Enough. The Extension to Restore Sanity is an extension for Google Chrome that activates when you navigate to a major news site. As of this writing, any headline links on the page meeting Wong’s criteria (or some elaborations on them) will be replaced by “Story hidden: ” followed by a short explanation. See the screenshots to get a better idea of what that looks like. At this time the extension supports the following rules: Version 1.0: - No Gaffes: Excludes headlines containing “gaffes” - No Tenuous Stories, Speculations, or Rhetorical Questions: Excludes qualified headlines - No Talking Points Volleyball: Excludes headlines with variants of “blasts” - No Overstating Importance: Excludes headlines with “lawmaker”. - No Low Blows: Excludes variants of “blow to”. - No Spin Zone: Excludes headlines with “spin” in the title. Version 1.1 Adds: - Unbiased?: Excludes headlines that focus on media bias. - No Sensationalism: Excludes headlines that mention the "mainstream media". Version 1.2: - Fixes some bugs that might cause the info box to not disappear - Adds a close button to escape if that does happen - Reduces false positives for science and health stories - Randomizes the rule displayed if multiple match - Adds CBS News to the list of supported sites Version 1.2.1 and 1.2.2: - Added exceptions for "blasts" to not censor actual explosions Where applicable, exceptions are made to more accurately target political stories. Outside of the political realm, some of these rules, particularly the second rule, tends to accidentally hide legitimate information. Future updates will likely serve to improve the accuracy of the targeting (version 1.1 now conditions on URLs to improve the true positive rate for select news sites). The extension was originally inspired by an article on Cracked.com by David Wong called "5 Ways to Spot a B.S. Political Story in Under 10 Seconds" (http://www.cracked.com/blog/5-ways-to-spot-b.s.-political-story-in-under-10-seconds/). The name of the extension was is tribute to “The Rally to Restore Sanity and/or Fear” that occurred in Washington D.C. in late 2010 hosted by John Stewart and Stephen Colbert. I believe this extension serves a common purpose: remove noise from the news and help elevate the level of debate. I hope that you find it useful! Developers can find the code on github licensed under the MIT License: https://github.com/william-silversmith/extension-restore-sanity This extension is not endorsed by Cracked.com, the organizers of "The Rally to Restore Sanity and/or Fear", or any news website featured in demonstration screen shots. Other than their inspiration, as of this writing, it is wholly my own work and the work of my wonderful friends who tested it. A somewhat more detailed version of this summary can be found here: http://williamsilversmith.posterous.com/the-extension-to-restore-sanity Image Credits: For the promotional image: The horse appearing on the right hand side is a modified version of: http://www.briarpress.org/24846 The image was licensed under Creative Commons Attribution, Non-Commercial 2.5: http://creativecommons.org/licenses/by-nc/2.5/ The check mark appearing on the left hand side was a public domain image from: http://en.wikipedia.org/wiki/File:Checkmark.png
擴展基本資訊
名稱 | |
ID | bggibicdeedcagmnibgoaggaciolkdhg |
官方網址 | https://chrome.google.com/webstore/detail/the-extension-to-restore/bggibicdeedcagmnibgoaggaciolkdhg |
簡介 | Delete superfluous political riff-raff from news sites. |
檔案大小 | 64.77 KB |
安裝次數 | 1,035 |
目前版本 | 1.2.2 |
更新時間 | 2013-04-15 |
上架時間 | 2013-04-15 |
評分 | 3.75/5 共 12 次評分 |
開發者 | William Silversmith |
付費類型 | free |
支援的語言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Delete superfluous political riff-raff from news sites.", "background": { "page": "background.html" }, "name": "The Extension to Restore Sanity", "icons": { "48": "images\/icon48.png", "128": "images\/icon128.png", "16": "images\/icon16.png" }, "content_scripts": [ { "matches": [ "*:\/\/www.google.com\/*", "*:\/\/news.google.com\/*", "*:\/\/news.yahoo.com\/*", "*:\/\/www.yahoo.com\/*", "*:\/\/www.bbc.co.uk\/*", "*:\/\/www.cnn.com\/*", "*:\/\/www.foxnews.com\/*", "*:\/\/www.nbcnews.com\/*", "*:\/\/www.msnbc.com\/*", "*:\/\/www.msnbc.msn.com\/*", "*:\/\/www.huffingtonpost.com\/*", "*:\/\/www.drudgereport.com\/*", "*:\/\/abcnews.go.com\/*", "*:\/\/www.washingtonpost.com\/politics*", "*:\/\/www.nytimes.com\/*politics*", "*:\/\/www.theatlantic.com\/politics*", "*:\/\/www.politico.com\/*", "*:\/\/www.salon.com\/*", "*:\/\/www.newsmax.com\/*", "*:\/\/www.theblaze.com\/*", "*:\/\/www.csmonitor.com\/*", "*:\/\/www.infowars.com\/*", "*:\/\/www.washingtontimes.com\/*", "*:\/\/thehill.com\/*", "*:\/\/www.freerepublic.com\/*", "*:\/\/talkingpointsmemo.com\/*", "*:\/\/*.talkingpointsmemo.com\/*", "*:\/\/www.townhall.com\/*", "*:\/\/www.cbsnews.com\/*" ], "js": [ "js\/jquery-1.8.2.min.js", "js\/content.js" ], "css": [ "css\/content.css" ] } ], "manifest_version": 2, "version": "1.2.2" } |