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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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