Quora Unblocker
Removes the login requirement and any nagging about it
What is Quora Unblocker?
Quora Unblocker is a Chrome extension developed by http://sindresorhus.com, and its main feature is "Removes the login requirement and any nagging about it".
Extension Screenshots
Download Quora Unblocker Extension CRX File
Download Quora Unblocker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Quora has a quite obscure way to view content without logging [0] in by appending `?share=1` to the url. This extensions appends that to every Quora url you visit in addition to removing some annoying login nags. [0]: http://blog.quora.com/Making-Sharing-Better
Extension Basic Information
Name | |
ID | pcjnlebeogfamlbeloiccdidgmaeojhe |
Official URL | https://chrome.google.com/webstore/detail/quora-unblocker/pcjnlebeogfamlbeloiccdidgmaeojhe |
Description | Removes the login requirement and any nagging about it |
File Size | 17.22 KB |
Installation Count | 3,000 |
Current Version | 1.1.2 |
Last Updated | 2020-11-19 |
Publish Date | 2019-03-01 |
Rating | 3.65/5 Total 31 Ratings |
Developer | http://sindresorhus.com |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/sindresorhus/quora-unblocker |
Help Page URL | https://github.com/sindresorhus/quora-unblocker/issues |
Privacy Policy Page URL | https://github.com/sindresorhus/privacy-policy/blob/master/chrome-extensions.md |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Quora Unblocker", "version": "1.1.2", "description": "Removes the login requirement and any nagging about it", "homepage_url": "https:\/\/github.com\/sindresorhus\/quora-unblocker", "manifest_version": 2, "minimum_chrome_version": "65", "icons": { "128": "icon.png" }, "permissions": [ "webRequest", "webRequestBlocking", "*:\/\/quora.com\/*", "*:\/\/www.quora.com\/*" ], "background": { "scripts": [ "query-string.js", "background.js" ] }, "content_scripts": [ { "run_at": "document_end", "matches": [ "*:\/\/quora.com\/*", "*:\/\/www.quora.com\/*" ], "css": [ "content.css" ] } ] } |