World Cup Spoiler Blocker

Block World Cup 2018 Scores on ESPN or Fox Sports

ما هو World Cup Spoiler Blocker؟

World Cup Spoiler Blocker هو إضافة Chrome تم تطويرها بواسطة http://quantfive.org، والميزة الرئيسية لها هي "Block World Cup 2018 Scores on ESPN or Fox Sports".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة World Cup Spoiler Blocker

قم بتنزيل ملفات الامتداد World Cup Spoiler Blocker بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Want to watch the World Cup on replay but can't avoid it? BLOCK the scores on major sites like ESPN and Fox Sports so you can go find the replay of the game and watch it without revealing the scores.

Click on the extension to undo the blocking.                    

معلومات أساسية عن التمديد

الاسم World Cup Spoiler Blocker World Cup Spoiler Blocker
ID aghafhfennhbflakcpkhhgkkbgjccnml
عنوان URL الرسمي https://chrome.google.com/webstore/detail/world-cup-spoiler-blocker/aghafhfennhbflakcpkhhgkkbgjccnml
الوصف Block World Cup 2018 Scores on ESPN or Fox Sports
حجم الملف 13.65 KB
عدد التثبيتات 21
النسخة الحالية 1.2.2
آخر تحديث 2018-06-24
تاريخ النشر 2018-06-24
تقييم 3.33/5 مجموع تقييمات 3
المطور http://quantfive.org
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://www.quantfive.org/portfolio
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "World Cup Spoiler Blocker",
    "short_name": "WC Spoilers",
    "description": "Block World Cup 2018 Scores on ESPN or Fox Sports",
    "version": "1.2.2",
    "author": "Quant Five",
    "browser_action": [],
    "permissions": [
        "background",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.espn.com\/*",
                "https:\/\/*.foxsportsgo.com\/*",
                "https:\/\/*.foxsports.com\/*"
            ],
            "js": [
                "main.js"
            ],
            "css": [
                "main.css"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ]
}