Just Go Away

This extension quickly gets rid of webpage annoyances that cover content with a right-click.

Just Go Away란 무엇입니까?

Just Go Away은(는) trophygeek에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension quickly gets rid of webpage annoyances that cover content with a right-click."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Just Go Away 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Don't you hate it a webpage crowds out content with a huge floating menu or banner?

Now you can make many of these annoyances go away with a right-click.

 - Update (1.0.5): fix a bug from a Chrome behavior change.

After updating / installing extension, pages need to be reloaded before the extension works.

If you find a site that doesn't work, please post it here:
https://groups.google.com/forum/#!forum/just-go-away-extension                    

확장 프로그램 기본 정보

이름 Just Go Away Just Go Away
ID npgfhbcfcdgeeefdgphknhfncnjghdfk
공식 URL https://chrome.google.com/webstore/detail/just-go-away/npgfhbcfcdgeeefdgphknhfncnjghdfk
설명 This extension quickly gets rid of webpage annoyances that cover content with a right-click.
파일 크기 466 KB
설치 횟수 73
현재 버전 1.0.5
최근 업데이트 2015-05-21
출시 날짜 2015-05-21
평점 5.00/5 총 2 개의 평점
개발자 trophygeek
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://groups.google.com/forum/#!forum/just-go-away-extension
개인정보 보호 정책 페이지 URL https://trophygeek.com/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Just Go Away",
    "short_name": "justgoaway",
    "version": "1.0.5",
    "manifest_version": 2,
    "description": "This extension quickly gets rid of webpage annoyances that cover content with a right-click.",
    "homepage_url": "https:\/\/chrome.google.com\/webstore\/detail\/npgfhbcfcdgeeefdgphknhfncnjghdfk",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "options_page": "src\/options\/index.html",
    "permissions": [
        "tabs",
        "contextMenus",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "Stuff on page has been hidden. Click to reshow everything again.",
        "default_popup": "src\/page_action\/page_action.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "all_frames": true,
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ]
}