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 to jest All Answers for Quora?
All Answers for Quora to rozszerzenie Chrome opracowane przez k0pernikus, a jego główną funkcją jest „Tired of the annoying oh-register-now-you-fool layer? About to blacklist quora.com? This will let you read all answers.”.
Pobierz plik CRX rozszerzenia All Answers for Quora
Pobierz pliki rozszerzeń All Answers for Quora w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | oibecpjfbcfhiijpppnjinnnoldjmiac |
Oficjalny URL | https://chrome.google.com/webstore/detail/all-answers-for-quora/oibecpjfbcfhiijpppnjinnnoldjmiac |
Opis | Tired of the annoying oh-register-now-you-fool layer? About to blacklist quora.com? This will let you read all answers. |
Rozmiar pliku | 24.74 KB |
Liczba instalacji | 397 |
Aktualna Wersja | 0.2 |
Ostatnia Aktualizacja | 2013-07-07 |
Data Publikacji | 2013-07-07 |
Ocena | 5.00/5 Łącznie 8 Oceny |
Deweloper | k0pernikus |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/k0pernikus/allAnswersForQuora |
Adres URL Strony Pomocy | https://github.com/k0pernikus/allAnswersForQuora/issues |
Obsługiwane Języki | 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 } ] } |