Quora Unblocker

Removes the login requirement and any nagging about it

什么是Quora Unblocker?

Quora Unblocker是由http://sindresorhus.com开发的Chrome扩展程序,该扩展的主要功能是“Removes the login requirement and any nagging about it”。

扩展截图

screenshot
screenshot

下载Quora Unblocker扩展crx文件

下载Quora Unblocker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Quora Unblocker Quora Unblocker
ID pcjnlebeogfamlbeloiccdidgmaeojhe
官方URL https://chrome.google.com/webstore/detail/quora-unblocker/pcjnlebeogfamlbeloiccdidgmaeojhe
简介 Removes the login requirement and any nagging about it
文件大小 17.22 KB
安装次数 3,000
当前版本 1.1.2
更新时间 2020-11-19
上架时间 2019-03-01
评分 3.65/5 共31次评分
开发者 http://sindresorhus.com
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/sindresorhus/quora-unblocker
帮助页面URL https://github.com/sindresorhus/quora-unblocker/issues
隐私政策页面URL https://github.com/sindresorhus/privacy-policy/blob/master/chrome-extensions.md
支持的语言 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"
            ]
        }
    ]
}