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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ All Answers for Quora All Answers for Quora
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
        }
    ]
}