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
Eメール [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"
            ]
        }
    ]
}