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.                    

擴展基本資訊

名稱 All Answers for Quora All Answers for Quora
ID oibecpjfbcfhiijpppnjinnnoldjmiac
官方網址 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
        }
    ]
}