Blockr

A simple, lightweight post blocking solution for Tumblr

Blockrคืออะไร?

Blockr เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Elizabeth Harper และคุณลักษณะหลักของมันคือ "A simple, lightweight post blocking solution for Tumblr"

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

screenshot

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

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

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

                        Blockr is a post blocker for the popular blogging site Tumblr.  This extension adds a small button to each post which blocks the post from your dashboard. Posts are blocked based on their root post ID so the post will be hidden no matter who reblogs it.

The block button is located at the top right of each post so users can block offensive or unwanted content without having to scroll through the entirety of a post.                    

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

ชื่อ Blockr Blockr
ID hnaljgbbcjabdcibeliipmcifmfeionc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/blockr/hnaljgbbcjabdcibeliipmcifmfeionc
คำอธิบาย A simple, lightweight post blocking solution for Tumblr
ขนาดไฟล์ 24.03 KB
จำนวนการติดตั้ง 28
เวอร์ชันปัจจุบัน 1.1.1
อัปเดตครั้งล่าสุด 2017-05-01
วันที่เผยแพร่ 2017-05-01
คะแนน 4.25/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา Elizabeth Harper
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/EllieFops/blockr
URL หน้าช่วยเหลือ https://github.com/EllieFops/blockr/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Blockr",
    "description": "A simple, lightweight post blocking solution for Tumblr",
    "version": "1.1.1",
    "author": {
        "name": "Elizabeth Harper",
        "email": "[email protected]",
        "url": "https:\/\/github.com\/EllieFops"
    },
    "incognito": "not_allowed",
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.tumblr.com\/dashboard"
            ],
            "css": [
                "css\/blockr.css"
            ],
            "js": [
                "js\/blockr.js"
            ]
        }
    ],
    "icons": {
        "16": "res\/16.png",
        "32": "res\/32.png",
        "48": "res\/48.png",
        "128": "res\/128.png"
    }
}