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.
Co je All Answers for Quora?
All Answers for Quora je rozšíření Chrome vyvinuté k0pernikus, a jeho hlavní funkcí je „Tired of the annoying oh-register-now-you-fool layer? About to blacklist quora.com? This will let you read all answers.“.
Stáhnout soubor CRX rozšíření All Answers for Quora
Stáhněte si soubory rozšíření All Answers for Quora ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | |
ID | oibecpjfbcfhiijpppnjinnnoldjmiac |
Oficiální URL | https://chrome.google.com/webstore/detail/all-answers-for-quora/oibecpjfbcfhiijpppnjinnnoldjmiac |
Popis | Tired of the annoying oh-register-now-you-fool layer? About to blacklist quora.com? This will let you read all answers. |
Velikost souboru | 24.74 KB |
Počet instalací | 397 |
Aktuální Verze | 0.2 |
Poslední Aktualizace | 2013-07-07 |
Datum Vydání | 2013-07-07 |
Hodnocení | 5.00/5 Celkem 8 Hodnocení |
Vývojář | k0pernikus |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/k0pernikus/allAnswersForQuora |
URL Stránky Nápovědy | https://github.com/k0pernikus/allAnswersForQuora/issues |
Podporované Jazyky | 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 } ] } |