Block Quora Login Popup

Automatically block the Quora login popup.

¿Qué es Block Quora Login Popup?

Block Quora Login Popup es una extensión de Chrome desarrollada por http://niftylettuce.com, y su función principal es "Automatically block the Quora login popup.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Block Quora Login Popup

Descarga archivos de extensión Block Quora Login Popup 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

                        This extension automatically removes the annoying login popup at Quora.  If you'd like to still log in, simply click the "Log In" link at the top right of Quora's website.

Please submit any issues to our Github repository page.

Follow @niftylettuce on Twitter for updates.

*************
* CHANGELOG *
*************

0.0.5: fixed blocker to work with ?share=1, added Grunt to compress and reduce extension's package file size considerably

0.0.4: fixed bug for installer

0.0.3: removed jQuery, removal is much faster now, added ?ref=fb add in case you are not redirected from FB it will add/remove the popup and show all content for a hacky workaround

0.0.2: fixed a few bugs

0.0.1: initial release                    

Información Básica de la Extensión

Nombre Block Quora Login Popup Block Quora Login Popup
ID fkbnfnaikpdihahjljbigedkangbieih
URL Oficial https://chrome.google.com/webstore/detail/block-quora-login-popup/fkbnfnaikpdihahjljbigedkangbieih
Descripción Automatically block the Quora login popup.
Tamaño del Archivo 11.63 KB
Cantidad de Instalaciones 1,987
Versión Actual 0.0.5
Última Actualización 2014-05-09
Fecha de Publicación 2014-05-09
Calificación 3.60/5 Total de 15 Calificaciones
Desarrollador http://niftylettuce.com
Tipo de Pago free
Sitio Web de la Extensión https://github.com/niftylettuce/block-quora-login-popup
URL de la Página de Ayuda https://github.com/niftylettuce/block-quora-login-popup/issues
Idiomas Soportados en-US
manifest.json
{
    "name": "Block Quora Login Popup",
    "version": "0.0.5",
    "manifest_version": 2,
    "description": "Automatically block the Quora login popup.",
    "homepage_url": "https:\/\/github.com\/niftylettuce\/block-quora-login-popup",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_title": "Block Quora Login Popup",
        "default_icon": "icons\/icon19.png",
        "default_popup": "src\/popup.html"
    },
    "background": {
        "scripts": [
            "src\/bg\/background.js",
            "src\/bg\/google-analytics.js"
        ],
        "persistent": true
    },
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/quora.com\/*",
                "https:\/\/quora.com\/*",
                "http:\/\/www.quora.com\/*",
                "https:\/\/www.quora.com\/*"
            ],
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "web_accessible_resources": [
        "icons\/icon48.png"
    ]
}