Quora Unblocker

Removes the login requirement and any nagging about it

Quora Unblocker là gì?

Quora Unblocker là một tiện ích mở rộng Chrome được phát triển bởi http://sindresorhus.com, và tính năng chính của nó là "Removes the login requirement and any nagging about it".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

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

Tải xuống các tệp mở rộng Quora Unblocker 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

                        Quora has a quite obscure way to view content without logging [0] in by appending `?share=1` to the url. This extensions appends that to every Quora url you visit in addition to removing some annoying login nags.

[0]: http://blog.quora.com/Making-Sharing-Better                    

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

Tên Quora Unblocker Quora Unblocker
ID pcjnlebeogfamlbeloiccdidgmaeojhe
URL Chính Thức https://chrome.google.com/webstore/detail/quora-unblocker/pcjnlebeogfamlbeloiccdidgmaeojhe
Mô tả Removes the login requirement and any nagging about it
Kích Thước Tệp 17.22 KB
Số Lần Cài Đặt 3,000
Phiên Bản Hiện Tại 1.1.2
Cập Nhật Lần Cuối 2020-11-19
Ngày Phát Hành 2019-03-01
Đánh Giá 3.65/5 Tổng số 31 Đánh Giá
Nhà Phát Triển http://sindresorhus.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/sindresorhus/quora-unblocker
URL Trang Trợ Giúp https://github.com/sindresorhus/quora-unblocker/issues
URL Trang Chính Sách Bảo Mật https://github.com/sindresorhus/privacy-policy/blob/master/chrome-extensions.md
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Quora Unblocker",
    "version": "1.1.2",
    "description": "Removes the login requirement and any nagging about it",
    "homepage_url": "https:\/\/github.com\/sindresorhus\/quora-unblocker",
    "manifest_version": 2,
    "minimum_chrome_version": "65",
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "*:\/\/quora.com\/*",
        "*:\/\/www.quora.com\/*"
    ],
    "background": {
        "scripts": [
            "query-string.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/quora.com\/*",
                "*:\/\/www.quora.com\/*"
            ],
            "css": [
                "content.css"
            ]
        }
    ]
}