Font blocker

Blocks the fonts you want to block.

Font blockerคืออะไร?

Font blocker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Rudie Dirkx และคุณลักษณะหลักของมันคือ "Blocks the fonts you want to block."

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

screenshot

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

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

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

                        Right click on an annoying custom web font and click "Block custom font" to add it to the local database. The font will be blocked immediately.

1.19
Removed broken Bold and Italic support.

1.18
Fixed unused message port, no more vague "Unchecked runtime.lastError" errors.

1.17
Better Bold and Italic support. WebExtensions compatibility for Firefox.

1.16
Fewer console messages.

1.15
Added preview before confirming.

1.14
Page/browser action support since Chrome 49+ =(

1.13
Font storage to sync (in Google profile, if you're synced).

1.12
Font name case bug (x2)

1.11
Font override order+

1.10
Only show page action if actually blocking fonts, per page. Added document type check.

1.9
Mark fonts for global blocking, on all websites everywhere always.

1.8
Removed session blocking, because useless and buggy.

1.7
Annoying warning about CORS sessionStorage? Added import and export.

1.6
Stupid bug for new users. Sorry.

1.5
Added page action for link to options. Added (un)glimpse via page action contextmenu. Added session blocking.

1.4
Block fonts per website to keep inline CSS size down. Added sorting on options page.

1.3
Fixed bug with adding very first font.

1.2
Added metadata (website & date). Changed options UI.

1.1
Added unblocking.                    

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

ชื่อ Font blocker Font blocker
ID knpgaobajhnhgkhhoopjepghknapnikl
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/font-blocker/knpgaobajhnhgkhhoopjepghknapnikl
คำอธิบาย Blocks the fonts you want to block.
ขนาดไฟล์ 31.4 KB
จำนวนการติดตั้ง 804
เวอร์ชันปัจจุบัน 1.19
อัปเดตครั้งล่าสุด 2019-10-04
วันที่เผยแพร่ 2019-10-04
คะแนน 4.15/5 รวมทั้งหมด 27 คะแนน
ผู้พัฒนา Rudie Dirkx
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/rudiedirkx/FontBlocker
URL หน้าช่วยเหลือ https://github.com/rudiedirkx/FontBlocker
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Font blocker",
    "description": "Blocks the fonts you want to block.",
    "version": "1.19",
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "fontblocker.logic.js",
                "fontblocker.content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "fontblocker.logic.js",
            "fontblocker.background.js"
        ]
    },
    "page_action": {
        "default_title": "Font blocker - (Un)glimpse blocked fonts",
        "default_icon": {
            "128": "images\/128x128.png"
        }
    },
    "applications": {
        "gecko": {
            "id": "[email protected]"
        }
    },
    "icons": {
        "128": "images\/128x128.png"
    },
    "manifest_version": 2
}