Just Go Away

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

Just Go Awayคืออะไร?

Just Go Away เป็นส่วนขยายของ Chrome ที่พัฒนาโดย trophygeek และคุณลักษณะหลักของมันคือ "This extension quickly gets rid of webpage annoyances that cover content with a right-click."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Just Go Away

ดาวน์โหลดไฟล์ส่วนขยาย 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
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"
            ]
        }
    ]
}