AdSidebar

Live in harmony with ads.

AdSidebar란 무엇입니까?

AdSidebar은(는) https://www.adsidebar.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Live in harmony with ads."입니다.

확장 프로그램 스크린샷

screenshot

AdSidebar 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        AdSidebar is an alternative to traditional ad blocker extensions. Ads are displayed in a controllable sidebar on the right hand side of the screen.

INSTALLATION
============
NOTE: all ad blocking extensions must be uninstalled _before_ installing AdSidebar.

FEATURES
========
- Gives the user more control of how and when ads are displayed.
- Benefits both the user and content creators.
- Ads are displayed in one location. This makes the website easier to read and helps the user distinguish between actual content and deceptive ads that disguise themselves as content.

OPEN SOURCE
============
- Open source (GPLv3)
- https://github.com/pauls-gh/adsidebar_chrome
- Uses the "Adblock Plus" engine to detect ads.

Limitations
=========
- Adblock detecting websites (e.g. forbes.com) will still think an adblock extension is running and trigger a warning message. For now, please disable AdSidebar for these websites (menu option "Disable on xxxxx").
- AdSidebar is disabled by default on youtube.com due to some display issues.                    

확장 프로그램 기본 정보

이름 AdSidebar AdSidebar
ID lkajnchmhjldgjoecppdkinfgimhjmeg
공식 URL https://chromewebstore.google.com/detail/adsidebar/lkajnchmhjldgjoecppdkinfgimhjmeg
설명 Live in harmony with ads.
파일 크기 687 KB
설치 횟수 149
현재 버전 0.6.0.2
최근 업데이트 2019-09-21
출시 날짜 2019-09-20
개발자 https://www.adsidebar.com
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "applications": {
        "gecko": {
            "id": "{8266f3a6-a3f8-4dc5-8257-5b1eeb3dff51}",
            "strict_min_version": "50.0"
        }
    },
    "author": "Paul Shaw",
    "background": {
        "persistent": true,
        "scripts": [
            "polyfill.js",
            "ext\/common.js",
            "ext\/background.js",
            "lib\/compat.js",
            "lib\/publicSuffixList.js",
            "lib\/adblockplus.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/abp-16.png",
            "19": "icons\/abp-19.png",
            "20": "icons\/abp-20.png",
            "32": "icons\/abp-32.png",
            "38": "icons\/abp-38.png",
            "40": "icons\/abp-40.png"
        },
        "default_popup": "popup.html",
        "default_title": "__MSG_name__"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "polyfill.js",
                "ext\/common.js",
                "ext\/content.js",
                "include.preload.js"
            ],
            "match_about_blank": true,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        },
        {
            "all_frames": false,
            "js": [
                "adsidebar\/compat.js",
                "adsidebar\/utils.js",
                "adsidebar\/ads.js",
                "adsidebar\/nodeQueue.js",
                "adsidebar\/adSidebar.js"
            ],
            "match_about_blank": true,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        },
        {
            "all_frames": true,
            "js": [
                "adsidebar\/frame.js"
            ],
            "match_about_blank": true,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_idle"
        },
        {
            "all_frames": true,
            "js": [
                "include.postload.js"
            ],
            "match_about_blank": true,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "default_locale": "en_US",
    "description": "__MSG_description__",
    "devtools_page": "devtools.html",
    "icons": {
        "128": "icons\/detailed\/abp-128.png",
        "16": "icons\/abp-16.png",
        "32": "icons\/abp-32.png",
        "48": "icons\/detailed\/abp-48.png",
        "64": "icons\/detailed\/abp-64.png"
    },
    "manifest_version": 2,
    "minimum_chrome_version": "49.0",
    "minimum_opera_version": "36.0",
    "name": "__MSG_name__",
    "options_ui": {
        "open_in_tab": true,
        "page": "options.html"
    },
    "permissions": [
        "tabs",
        "",
        "contextMenus",
        "webRequest",
        "webRequestBlocking",
        "webNavigation",
        "storage",
        "unlimitedStorage",
        "notifications"
    ],
    "short_name": "__MSG_name__",
    "storage": {
        "managed_schema": "managed-storage-schema.json"
    },
    "version": "0.6.0.2",
    "web_accessible_resources": [
        "adsidebar\/resources\/*"
    ]
}