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文件

下載Just Go Away擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
            ]
        }
    ]
}