Just Go Away

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

Just Go Away là gì?

Just Go Away là một tiện ích mở rộng Chrome được phát triển bởi trophygeek, và tính năng chính của nó là "This extension quickly gets rid of webpage annoyances that cover content with a right-click.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Just Go Away

Tải xuống các tệp mở rộng Just Go Away dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Just Go Away Just Go Away
ID npgfhbcfcdgeeefdgphknhfncnjghdfk
URL Chính Thức https://chrome.google.com/webstore/detail/just-go-away/npgfhbcfcdgeeefdgphknhfncnjghdfk
Mô tả This extension quickly gets rid of webpage annoyances that cover content with a right-click.
Kích Thước Tệp 466 KB
Số Lần Cài Đặt 73
Phiên Bản Hiện Tại 1.0.5
Cập Nhật Lần Cuối 2015-05-21
Ngày Phát Hành 2015-05-21
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển trophygeek
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://groups.google.com/forum/#!forum/just-go-away-extension
URL Trang Chính Sách Bảo Mật https://trophygeek.com/privacy
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}