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.
Vad är All Answers for Quora?
All Answers for Quora är en Chrome-tillägg utvecklad av k0pernikus, och dess huvudfunktion är "Tired of the annoying oh-register-now-you-fool layer? About to blacklist quora.com? This will let you read all answers.".
Ladda ner All Answers for Quora-förlängningens CRX-fil
Ladda ner All Answers for Quora-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | |
ID | oibecpjfbcfhiijpppnjinnnoldjmiac |
Officiell webbadress | https://chrome.google.com/webstore/detail/all-answers-for-quora/oibecpjfbcfhiijpppnjinnnoldjmiac |
Beskrivning | Tired of the annoying oh-register-now-you-fool layer? About to blacklist quora.com? This will let you read all answers. |
Filstorlek | 24.74 KB |
Antal Installationer | 397 |
Aktuell Version | 0.2 |
Senast Uppdaterad | 2013-07-07 |
Publiceringsdatum | 2013-07-07 |
Betyg | 5.00/5 Totalt 8 Betyg |
Utvecklare | k0pernikus |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/k0pernikus/allAnswersForQuora |
Hjälpsida URL | https://github.com/k0pernikus/allAnswersForQuora/issues |
Stödda Språk | 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 } ] } |