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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Tired of the annoying oh-register-now-you-fool layer? About to blacklist quora.com? This will let you read all answers."।

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में All Answers for Quora एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
        }
    ]
}