nonpartisan.me

Removes partisanship from your news feeds

nonpartisan.meคืออะไร?

nonpartisan.me เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://malloc47.com และคุณลักษณะหลักของมันคือ "Removes partisanship from your news feeds"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย nonpartisan.me

ดาวน์โหลดไฟล์ส่วนขยาย nonpartisan.me ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        nonpartisan.me is able to hide posts in your news feeds which contain specific keywords.  It has all sorts of features:
* Keyword presets: If you only want to block "liberal" posts or "conservative" posts, you're covered with some built-in presets.
* Custom keywords: If the presets aren't working for you (or are overzealous), punch in any keywords you'd like to see gone, and say goodbye to those posts.
* Multiple sites: Currently filters the facebook news feed and twitter, with more sites coming soon.
* Aggressive filter: Can identify posts to remove, even if the partisanship only begins in the comments.

Version History
0.2.1
- Google+ support!
0.2
- individual sites can now be toggled on and off via the options or by clicking on the url icon
0.1.4
- Yet more built-in keywords
0.1.3
- Well, that was embarrassing... fixed some of the (forgotten) keywords
0.1.2
- A few more built-in keywords set (go into options and hit "save" to activate them)
- Fix a bug where the filter would trigger more often than necessary
0.1.1 
- Initial release                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ nonpartisan.me nonpartisan.me
ID ninebcppidndhampaggnjbijpacoadgg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/nonpartisanme/ninebcppidndhampaggnjbijpacoadgg
คำอธิบาย Removes partisanship from your news feeds
ขนาดไฟล์ 75.89 KB
จำนวนการติดตั้ง 58
เวอร์ชันปัจจุบัน 0.2.1
อัปเดตครั้งล่าสุด 2012-09-10
วันที่เผยแพร่ 2012-09-09
คะแนน 4.14/5 รวมทั้งหมด 7 คะแนน
ผู้พัฒนา https://malloc47.com
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://nonpartisan.me
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "nonpartisan.me",
    "version": "0.2.1",
    "manifest_version": 2,
    "description": "Removes partisanship from your news feeds",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "homepage_url": "http:\/\/nonpartisan.me",
    "page_action": {
        "default_icon": "icon48.png",
        "default_title": "nonpartisan'ed"
    },
    "permissions": [
        "tabs",
        "http:\/\/www.facebook.com\/",
        "http:\/\/www.twitter.com\/",
        "http:\/\/plus.google.com\/"
    ],
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.facebook.com\/*"
            ],
            "js": [
                "jquery.js",
                "common.js",
                "fb.js",
                "nonpartisan.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/twitter.com\/*"
            ],
            "js": [
                "jquery.js",
                "common.js",
                "tw.js",
                "nonpartisan.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/plus.google.com\/*"
            ],
            "js": [
                "jquery.js",
                "common.js",
                "gp.js",
                "nonpartisan.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "common.js",
            "background.js"
        ],
        "persistent": false
    }
}