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はk0pernikusによって開発されたChromeの拡張機能で、その主な機能は「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拡張機能のCRXファイルをダウンロード
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 |
Eメール | [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 } ] } |