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 |
电子邮箱 | [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 } ] } |