Skipper

Skips annoying intersitials on certain sites.

Skipperคืออะไร?

Skipper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย PASSIONFLOWER และคุณลักษณะหลักของมันคือ "Skips annoying intersitials on certain sites."

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

ดาวน์โหลดไฟล์ส่วนขยาย Skipper ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Removes annoy interstitials from certain sites. This is very different from AdBlock. 

Q: What's an interstitial?

You know when you click a link for a news site and you get redirected to a 'welcome' page with ads? That's an interstitial and this Chrome Extension will bypass that annoying redirect. 

Q: What sites are bypassed?

forbes.com.

Q: Why not more?

Each interstitial must by bypassed manually. This involves looking at their code and bypassing it. AdBlock simply blocks the site from loading. Here we need a custom approach for each site.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Skipper Skipper
ID enmdmbmepgnbjaodbccoffhgbnbdhpfo
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/skipper/enmdmbmepgnbjaodbccoffhgbnbdhpfo
คำอธิบาย Skips annoying intersitials on certain sites.
ขนาดไฟล์ 4.17 KB
จำนวนการติดตั้ง 126
เวอร์ชันปัจจุบัน 0.4
อัปเดตครั้งล่าสุด 2016-02-23
วันที่เผยแพร่ 2016-02-23
คะแนน 3.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา PASSIONFLOWER
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "inject.js"
            ],
            "matches": [
                "http:\/\/*.forbes.com\/*",
                "https:\/\/*.forbes.com\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "description": "Skips annoying intersitials on certain sites.",
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwezqaxP1vIjFNc\/5Gj41HXrRH+rJO09ainoVF+DrhYAmWhrvJIGa9L4yWeYLe8gHT+2r4WNG7cmov5s7qEjvHlF4GZcggtpK\/OrUkGRpc+YVPXv+IGZASyRcLlyFEWILfod2yiw67fc4\/VSrmwvMGaL2WSjLOgOmlwYxOSVb35GuXTKz1akKOBvFjBPUIIXa3NO0GU8ZTFtTN9j5tlgE\/YYfNxt8X41ng+vtVO+A\/De48kLB7ZfGRgIroKYePY65je1ThTJY8ZKuQhKToBap9rkTb609h6MmblAI7RTgiVZtZxmmHjfJmTplzA1Wij+huRC1+KKgmsw5aQTV9GpQQwIDAQAB",
    "manifest_version": 2,
    "name": "Skipper",
    "permissions": [
        "tabs"
    ],
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.4"
}