Social Muter

An extension for easily removing or hiding tweets in your timeline with a certain hashtag or keywords.

Social Muterคืออะไร?

Social Muter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://socialmuter.com และคุณลักษณะหลักของมันคือ "An extension for easily removing or hiding tweets in your timeline with a certain hashtag or keywords."

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

screenshot

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

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

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

                        Tired of weekly spoilers showing up on your Twitter Timeline? Or perhaps, you're tired of seeing a certain hashtag or topic being discussed. With Social Muter, you can filter out all of that noise from your timeline and show only content that you really want to see, when you want to see it.                    

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

ชื่อ Social Muter Social Muter
ID pipnnaljhbijgcfmcihmmjmpnmhhljhp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/social-muter/pipnnaljhbijgcfmcihmmjmpnmhhljhp
คำอธิบาย An extension for easily removing or hiding tweets in your timeline with a certain hashtag or keywords.
ขนาดไฟล์ 107 KB
จำนวนการติดตั้ง 24
เวอร์ชันปัจจุบัน 0.0.1
อัปเดตครั้งล่าสุด 2016-12-18
วันที่เผยแพร่ 2016-12-17
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา https://socialmuter.com
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extName__",
    "version": "0.0.1",
    "description": "__MSG_extDescription__",
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs",
        "storage",
        "*:\/\/twitter.com\/*"
    ],
    "browser_action": {
        "default_icon": {
            "19": "icon-19.png",
            "38": "icon-38.png"
        },
        "default_title": "__MSG_extName__",
        "default_popup": "popup.html"
    },
    "omnibox": {
        "keyword": "Twitter Muter"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/twitter.com\/*",
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ]
}