Letterblockd

Block Letterboxd users that you don't want to see reviews from

Letterblockdคืออะไร?

Letterblockd เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "Block Letterboxd users that you don't want to see reviews from"

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

screenshot
screenshot

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

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

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

                        If you don't want to see content by some user on Letterboxd, then just add them to the list in the options.                    

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

ชื่อ Letterblockd Letterblockd
ID dkjlmnilbamfppblfkhdmdlonfbodpkf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/letterblockd/dkjlmnilbamfppblfkhdmdlonfbodpkf
คำอธิบาย Block Letterboxd users that you don't want to see reviews from
ขนาดไฟล์ 19.3 KB
จำนวนการติดตั้ง 49
เวอร์ชันปัจจุบัน 0.0.0.1
อัปเดตครั้งล่าสุด 2020-05-25
วันที่เผยแพร่ 2020-05-25
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Unknown
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDescription__",
    "version": "0.0.0.1",
    "short_name": "__MSG_appShortName__",
    "manifest_version": 2,
    "default_locale": "en",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "options_ui": {
        "page": "pages\/options.html",
        "browser-style": false,
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/letterboxd.com\/*",
                "https:\/\/letterboxd.com\/*"
            ],
            "css": [
                "styles\/contentscript.css"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "run_at": "document_start",
            "all_frames": false
        }
    ],
    "permissions": [
        "storage"
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    }
}