Remove Twitter Moments

Removes Twitter's 'Moments' navigation button.

Remove Twitter Momentsคืออะไร?

Remove Twitter Moments เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ed และคุณลักษณะหลักของมันคือ "Removes Twitter's 'Moments' navigation button."

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

screenshot

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

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

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

                        A simple Chrome extension to remove the Twitter 'Moment's navigation bar button.                    

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

ชื่อ Remove Twitter Moments Remove Twitter Moments
ID ahgkojcohophkbdipjagnobbdabmhmdm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/remove-twitter-moments/ahgkojcohophkbdipjagnobbdabmhmdm
คำอธิบาย Removes Twitter's 'Moments' navigation button.
ขนาดไฟล์ 9.48 KB
จำนวนการติดตั้ง 109
เวอร์ชันปัจจุบัน 1.1.0
อัปเดตครั้งล่าสุด 2015-12-14
วันที่เผยแพร่ 2015-12-13
คะแนน 4.38/5 รวมทั้งหมด 8 คะแนน
ผู้พัฒนา Ed
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/ed-flanagan/remove-moments
URL หน้าช่วยเหลือ https://github.com/ed-flanagan/remove-moments/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Remove Twitter Moments",
    "short_name": "Stop Moments",
    "description": "Removes Twitter's 'Moments' navigation button.",
    "version": "1.1.0",
    "version_name": "1.1.0",
    "homepage_url": "https:\/\/github.com\/ed-flanagan\/remove-moments",
    "author": "Ed Flanagan",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "offline_enabled": false,
    "permissions": [
        "http:\/\/twitter.com\/*",
        "https:\/\/twitter.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/twitter.com\/*",
                "https:\/\/twitter.com\/*"
            ],
            "run_at": "document_end",
            "all_frames": false,
            "css": [
                "remove.css"
            ]
        }
    ]
}