Twitter 'Likes' Hider

Twitter sometimes shows you tweets that people whom you follow 'like' or 'follow'. This extension provides a toggle to hide those.

Twitter 'Likes' Hiderคืออะไร?

Twitter 'Likes' Hider เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Rendall Koski และคุณลักษณะหลักของมันคือ "Twitter sometimes shows you tweets that people whom you follow 'like' or 'follow'. This extension provides a toggle to hide those."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Twitter 'Likes' Hider

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

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

                        Twitter 'Likes' Hider

Twitter puts tweets in your feed that someone else 'likes' or 'follows', or suggests 'topics'. This extension allows you to hide those and other similar tweets.

Instructions
After installing, the Twitter 'Likes' Hider icon will be visible to the right of your Chrome address bar. It will be active when visiting Twitter, and grayed out while visiting any other website.

Clicking on the icon while active will toggle the view of the 'liked' tweets from hidden to visible and back again.

To see how many tweets are hidden, hover your cursor over the icon. If it has hidden any tweets, it will tell you how many. 

It is possible to hide other kinds of Tweets. To change the kinds of Tweets that are hidden, right-click on the extension icon and select Options. A new Chrome tab will open with a list of labeled checkboxes. Check the boxes next to the kinds of tweets you would like to hide: Likes, Follows, Retweets, or Verified accounts / "Blue Check". The click the Save button to apply the changes. It may be necessary to reload Twitter.

Installation
Easiest option for everyone: Install the extension on Chrome via the Web Store link: https://chrome.google.com/webstore/detail/twitter-likes-hider/dkcgnebncpfljfaaplmedjnfjifffagj

Or if you are a developer and want to sideload the code: download / clone the source code into a local directory from here: https://github.com/rendall/twitter-like-hider and then follow these instructions from Google to install it on your browser as a developer. https://developer.chrome.com/extensions/getstarted#unpacked

Privacy Policy
The creator of Twitter 'Likes' Hider has zero interest in tracking you. Your privacy is sacrosanct. No data will be kept, tracked, transferred, sold, traded, nor even coveted in any respect, from now until the end of time.

Support: Have a comment? Question? Feature request?
Please follow this link and fill out the form: https://github.com/rendall/twitter-like-hider/issues/new

Open Source!
This extension is open source, which means you can see how it works yourself and even contribute to the project. More details here: 
https://github.com/rendall/twitter-like-hider                    

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

ชื่อ Twitter 'Likes' Hider Twitter 'Likes' Hider
ID dkcgnebncpfljfaaplmedjnfjifffagj
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/twitter-likes-hider/dkcgnebncpfljfaaplmedjnfjifffagj
คำอธิบาย Twitter sometimes shows you tweets that people whom you follow 'like' or 'follow'. This extension provides a toggle to hide those.
ขนาดไฟล์ 50.41 KB
จำนวนการติดตั้ง 962
เวอร์ชันปัจจุบัน 1.6.3
อัปเดตครั้งล่าสุด 2021-03-22
วันที่เผยแพร่ 2018-01-31
คะแนน 3.35/5 รวมทั้งหมด 26 คะแนน
ผู้พัฒนา Rendall Koski
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/rendall/twitter-like-hider
URL หน้าช่วยเหลือ https://github.com/rendall/twitter-like-hider/issues/new
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.6.3",
    "manifest_version": 2,
    "name": "Twitter 'Likes' Hider",
    "short_name": "Likes Hider",
    "description": "Twitter sometimes shows you tweets that people whom you follow 'like' or 'follow'. This extension provides a toggle to hide those.",
    "page_action": {
        "default_icon": {
            "16": "icon-16.png",
            "24": "icon-24.png",
            "32": "icon-32.png"
        },
        "off_icon": {
            "16": "icon-off-16.png",
            "24": "icon-off-24.png",
            "32": "icon-off-32.png"
        }
    },
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "homepage_url": "https:\/\/github.com\/rendall\/twitter-like-hider",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "css": [
                "content_script.css"
            ]
        }
    ],
    "options_page": "options.html",
    "permissions": [
        "webNavigation",
        "storage",
        "alarms",
        "https:\/\/twitter.com\/*"
    ]
}