All Answers for Quora
Tired of the annoying oh-register-now-you-fool layer? About to blacklist quora.com? This will let you read all answers.
¿Qué es All Answers for Quora?
All Answers for Quora es una extensión de Chrome desarrollada por k0pernikus, y su función principal es "Tired of the annoying oh-register-now-you-fool layer? About to blacklist quora.com? This will let you read all answers.".
Descargar Archivo CRX de la Extensión All Answers for Quora
Descarga archivos de extensión All Answers for Quora 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
If you are annoyed by being asked to register everytime you stumble across a quora.com question, and all you want to do is cut to the chase, this little extension let you do that. Read all the Answers without the BS. For the technical interested: All this extension does it adding a little get parameter, as quora has this feature already in place when people share their stuff in social media.
Información Básica de la Extensión
Nombre | |
ID | oibecpjfbcfhiijpppnjinnnoldjmiac |
URL Oficial | https://chrome.google.com/webstore/detail/all-answers-for-quora/oibecpjfbcfhiijpppnjinnnoldjmiac |
Descripción | Tired of the annoying oh-register-now-you-fool layer? About to blacklist quora.com? This will let you read all answers. |
Tamaño del Archivo | 24.74 KB |
Cantidad de Instalaciones | 397 |
Versión Actual | 0.2 |
Última Actualización | 2013-07-07 |
Fecha de Publicación | 2013-07-07 |
Calificación | 5.00/5 Total de 8 Calificaciones |
Desarrollador | k0pernikus |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/k0pernikus/allAnswersForQuora |
URL de la Página de Ayuda | https://github.com/k0pernikus/allAnswersForQuora/issues |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "All Answers for Quora", "version": "0.2", "description": "Tired of the annoying oh-register-now-you-fool layer? About to blacklist quora.com? This will let you read all answers.", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "permissions": [ "*:\/\/www.quora.com\/*" ], "background": { "persistent": false, "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/www.quora.com\/*" ], "js": [ "content.js" ], "run_at": "document_start", "all_frames": true } ] } |