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.
Что такое All Answers for Quora?
All Answers for Quora - это расширение Chrome, разработанное k0pernikus, и его основная функция - "Tired of the annoying oh-register-now-you-fool layer? About to blacklist quora.com? This will let you read all answers.".
Скачать файл CRX расширения All Answers for Quora
Скачайте файлы расширений All Answers for Quora в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | |
ID | oibecpjfbcfhiijpppnjinnnoldjmiac |
Официальный URL | https://chrome.google.com/webstore/detail/all-answers-for-quora/oibecpjfbcfhiijpppnjinnnoldjmiac |
Описание | Tired of the annoying oh-register-now-you-fool layer? About to blacklist quora.com? This will let you read all answers. |
Размер файла | 24.74 KB |
Количество установок | 397 |
Текущая Версия | 0.2 |
Последнее Обновление | 2013-07-07 |
Дата публикации | 2013-07-07 |
Рейтинг | 5.00/5 Всего 8 оценок |
Разработчик | k0pernikus |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/k0pernikus/allAnswersForQuora |
URL страницы помощи | https://github.com/k0pernikus/allAnswersForQuora/issues |
Поддерживаемые языки | 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 } ] } |