Remove Retweets

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

Remove Retweetsとは何ですか?

Remove Retweetsはoiva.eskolaによって開発されたChromeの拡張機能で、その主な機能は「An Extension for removing retweets of given users on twitter.com」です。

拡張機能のスクリーンショット

screenshot

Remove Retweets拡張機能のCRXファイルをダウンロード

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"
        }
    ]
}