Remove Retweets

An Extension for removing retweets of given users on twitter.com

Remove Retweetsคืออะไร?

Remove Retweets เป็นส่วนขยายของ Chrome ที่พัฒนาโดย oiva.eskola และคุณลักษณะหลักของมันคือ "An Extension for removing retweets of given users on twitter.com"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Remove Retweets

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

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

                        Follow someone on Twitter because you like them but hate everything they retweet? Then this is the extension for you.

This extension will let you specify Twitter users whose retweets you don't want to see. Their retweets will then be filtered from the main timeline and their user pages.

Follow people for what they tweet, not what they retweet!                    

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

ชื่อ Remove Retweets Remove Retweets
ID kpdjjfkdanbalgbghgmpiepnjkpokfoc
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/remove-retweets/kpdjjfkdanbalgbghgmpiepnjkpokfoc
คำอธิบาย An Extension for removing retweets of given users on twitter.com
ขนาดไฟล์ 103 KB
จำนวนการติดตั้ง 238
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2013-11-20
วันที่เผยแพร่ 2013-11-20
คะแนน 2.36/5 รวมทั้งหมด 11 คะแนน
ผู้พัฒนา oiva.eskola
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Remove Retweets",
    "description": "An Extension for removing retweets of given users on twitter.com",
    "version": "1.0",
    "permissions": [
        "https:\/\/twitter.com\/",
        "storage",
        "activeTab"
    ],
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "img\/icon48.png",
            "38": "img\/icon48.png"
        },
        "default_popup": "popup.html"
    },
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "web_accessible_resources": [
        "img\/icon128.png",
        "js\/underscore-1.5.2.min.map"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/twitter.com\/*"
            ],
            "js": [
                "js\/underscore-1.5.2.min.js",
                "js\/content.js"
            ],
            "run_at": "document_end"
        }
    ]
}