Remove Retweets

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

¿Qué es Remove Retweets?

Remove Retweets es una extensión de Chrome desarrollada por oiva.eskola, y su función principal es "An Extension for removing retweets of given users on twitter.com".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Remove Retweets

Descarga archivos de extensión Remove Retweets en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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!                    

Información Básica de la Extensión

Nombre Remove Retweets Remove Retweets
ID kpdjjfkdanbalgbghgmpiepnjkpokfoc
URL Oficial https://chrome.google.com/webstore/detail/remove-retweets/kpdjjfkdanbalgbghgmpiepnjkpokfoc
Descripción An Extension for removing retweets of given users on twitter.com
Tamaño del Archivo 103 KB
Cantidad de Instalaciones 238
Versión Actual 1.0
Última Actualización 2013-11-20
Fecha de Publicación 2013-11-20
Calificación 2.36/5 Total de 11 Calificaciones
Desarrollador oiva.eskola
Tipo de Pago free
Idiomas Soportados 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"
        }
    ]
}