Remove Retweets

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

Remove Retweets là gì?

Remove Retweets là một tiện ích mở rộng Chrome được phát triển bởi oiva.eskola, và tính năng chính của nó là "An Extension for removing retweets of given users on twitter.com".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Remove Retweets

Tải xuống các tệp mở rộng Remove Retweets dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Remove Retweets Remove Retweets
ID kpdjjfkdanbalgbghgmpiepnjkpokfoc
URL Chính Thức https://chrome.google.com/webstore/detail/remove-retweets/kpdjjfkdanbalgbghgmpiepnjkpokfoc
Mô tả An Extension for removing retweets of given users on twitter.com
Kích Thước Tệp 103 KB
Số Lần Cài Đặt 238
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2013-11-20
Ngày Phát Hành 2013-11-20
Đánh Giá 2.36/5 Tổng số 11 Đánh Giá
Nhà Phát Triển oiva.eskola
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}