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 là gì?

All Answers for Quora là một tiện ích mở rộng Chrome được phát triển bởi k0pernikus, và tính năng chính của nó là "Tired of the annoying oh-register-now-you-fool layer? About to blacklist quora.com? This will let you read all answers.".

Tải xuống tệp CRX của tiện ích mở rộng All Answers for Quora

Tải xuống các tệp mở rộng All Answers for Quora dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên All Answers for Quora All Answers for Quora
ID oibecpjfbcfhiijpppnjinnnoldjmiac
URL Chính Thức https://chrome.google.com/webstore/detail/all-answers-for-quora/oibecpjfbcfhiijpppnjinnnoldjmiac
Mô tả Tired of the annoying oh-register-now-you-fool layer? About to blacklist quora.com? This will let you read all answers.
Kích Thước Tệp 24.74 KB
Số Lần Cài Đặt 397
Phiên Bản Hiện Tại 0.2
Cập Nhật Lần Cuối 2013-07-07
Ngày Phát Hành 2013-07-07
Đánh Giá 5.00/5 Tổng số 8 Đánh Giá
Nhà Phát Triển k0pernikus
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/k0pernikus/allAnswersForQuora
URL Trang Trợ Giúp https://github.com/k0pernikus/allAnswersForQuora/issues
Ngôn Ngữ Được Hỗ Trợ 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
        }
    ]
}