Body of Work (BoW) for Reddit

Supercharge your /r/gonewild browsing!

Body of Work (BoW) for Reddit란 무엇입니까?

Body of Work (BoW) for Reddit은(는) BoW for Reddit에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Supercharge your /r/gonewild browsing!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Body of Work (BoW) for Reddit 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        NOTE: Body of Work (BoW) for Reddit has no affiliation with Reddit. Also, the extension itself contains no mature content, nor does it link to mature content.

Now, with a single click, you can open all submissions by a Reddit user to /r/gonewild and related subreddits. It also automatically highlights users who've posted to /r/gonewild and related subreddits as your browse Reddit. 

Don't worry, this extension does not save or transmit any data associated with your browsing.

This extension works in incognito mode, it just needs to be enabled on the chrome://extensions/ page in your browser.

Once installed, customize your preferences for subreddits to search for posts in, as well as the number of submissions to open with a single click.

Explanation of permissions:
Tabs: This permission is needed to open new tabs.
Storage: This permission is needed to store (on your device only) your preferences for the extension.

Report issues and/or request features here: [email protected]                    

확장 프로그램 기본 정보

이름 Body of Work (BoW) for Reddit Body of Work (BoW) for Reddit
ID gcljgfadfcojgncnmojndfdiedicbfoo
공식 URL https://chrome.google.com/webstore/detail/body-of-work-bow-for-redd/gcljgfadfcojgncnmojndfdiedicbfoo
설명 Supercharge your /r/gonewild browsing!
파일 크기 157 KB
설치 횟수 59
현재 버전 1.5
최근 업데이트 2019-01-20
출시 날짜 2019-01-20
평점 1.00/5 총 1 개의 평점
개발자 BoW for Reddit
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Body of Work (BoW) for Reddit",
    "short_name": "BoW",
    "description": "Supercharge your \/r\/gonewild browsing!",
    "version": "1.5",
    "icons": {
        "16": "BoW_16.png",
        "48": "BoW_48.png",
        "128": "BoW_128.png"
    },
    "page_action": {
        "default_icon": "BoW_16.png",
        "default_title": "BoW for Reddit"
    },
    "permissions": [
        "webRequestBlocking",
        "webRequest",
        "*:\/\/*.reddit.com\/",
        "storage",
        "tabs",
        "*:\/\/*.reddit.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/old.reddit.com\/r\/*",
                "https:\/\/old.reddit.com\/r\/*",
                "http:\/\/old.reddit.com\/",
                "https:\/\/old.reddit.com\/",
                "http:\/\/old.reddit.com\/#",
                "https:\/\/old.reddit.com\/#"
            ],
            "js": [
                "jquery-2.0.3.min.js",
                "content_script.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        },
        {
            "matches": [
                "http:\/\/old.reddit.com\/u\/*",
                "https:\/\/old.reddit.com\/u\/*",
                "http:\/\/old.reddit.com\/user\/*",
                "https:\/\/old.reddit.com\/user\/*"
            ],
            "js": [
                "jquery-2.0.3.min.js",
                "content_script_user_page.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "jquery-2.0.3.min.js",
            "background.js"
        ],
        "persistent": true
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}