Feedider

Feedider helps to hide distracting feeds or other similar sections from youtube, facebook, instagram, linkedin, twitter and reddit.

Feedider là gì?

Feedider là một tiện ích mở rộng Chrome được phát triển bởi The Overloader, và tính năng chính của nó là "Feedider helps to hide distracting feeds or other similar sections from youtube, facebook, instagram, linkedin, twitter and reddit.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Feedider

Tải xuống các tệp mở rộng Feedider dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Features: (you can hide any of the below mentioned sections)

● YouTube
    ✔ Thumbnails
    ✔ Home Feed
    ✔ Comments
    ✔ Video End Feed and Cards
    ✔ Subscriptions and Explore Buttons
    ✔ Left Sidebar
    ✔ Search Suggestions
    ✔ Video Description
    ✔ People also Watched Videos
    ✔ Trending
    ✔ Playlists
    ✔ Mixes
    ✔ Disable Autoplay

● Facebook
    ✔ Home Page Feed
    ✔ Stories
    ✔ Likes and Comments
    ✔ People You May Know
    ✔ Right Rail
    ✔ Left Rail

● Instagram
    ✔ Posts
    ✔ Stories
    ✔ Suggestions
    ✔ Likes, Comments and Description

● LinkedIn
    ✔ Home Feed
    ✔ News
    ✔ Comments

● Twitter
    ✔ Timeline
    ✔ Trending
    ✔ Likes
    ✔ Retweets

● Reddit
    ✔ Home Feed
    ✔ Recommended Communities
    ✔ Comments
--------------------------------------

Changelog:
[1.0.0] 2022-02-04
-Initial Release
[2.0.0] 2022-04-13
- New Logo
- Redesigned UI
- Added new featured in YouTube Menu
      1. Hide Thumbnails
      2. Hide Like, Dislike Button
      3. Disable Autoplay
      4. Hide Video Description
- Control feeds of Facebook, Instagram, LinkedIn, Twitter and Reddit                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Feedider Feedider
ID ljfikgipfnfppelplmgdpmooaoehaljb
URL Chính Thức https://chromewebstore.google.com/detail/feedider/ljfikgipfnfppelplmgdpmooaoehaljb
Mô tả Feedider helps to hide distracting feeds or other similar sections from youtube, facebook, instagram, linkedin, twitter and reddit.
Kích Thước Tệp 55.48 KB
Số Lần Cài Đặt 23
Phiên Bản Hiện Tại 2.0.0
Cập Nhật Lần Cuối 2022-04-21
Ngày Phát Hành 2022-02-03
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển The Overloader
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Feedider",
    "description": "Feedider helps to hide distracting feeds or other similar sections from youtube, facebook, instagram, linkedin, twitter and reddit.",
    "version": "2.0.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "js\/background.js"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/feedider_16.png",
            "32": "\/images\/feedider_32.png",
            "48": "\/images\/feedider_48.png",
            "64": "\/images\/feedider_64.png",
            "128": "\/images\/feedider_128.png"
        }
    },
    "icons": {
        "16": "\/images\/feedider_16.png",
        "32": "\/images\/feedider_32.png",
        "48": "\/images\/feedider_48.png",
        "64": "\/images\/feedider_64.png",
        "128": "\/images\/feedider_128.png"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "css": [
                "css\/youtubeContentScriptStyle.css"
            ],
            "js": [
                "js\/youtubeContentScript.js"
            ],
            "all_frames": true
        },
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/*.facebook.com\/*"
            ],
            "css": [
                "css\/facebookContentScriptStyle.css"
            ],
            "js": [
                "js\/facebookContentScript.js"
            ],
            "all_frames": true
        },
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/*.instagram.com\/*"
            ],
            "css": [
                "css\/instaContentScriptStyle.css"
            ],
            "js": [
                "js\/instaContentScript.js"
            ],
            "all_frames": true
        },
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/*.linkedin.com\/*"
            ],
            "css": [
                "css\/linkedinContentScriptStyle.css"
            ],
            "js": [
                "js\/linkedinContentScript.js"
            ],
            "all_frames": true
        },
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/*.twitter.com\/*"
            ],
            "css": [
                "css\/twitterContentScriptStyle.css"
            ],
            "js": [
                "js\/twitterContentScript.js"
            ],
            "all_frames": true
        },
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/*.reddit.com\/*"
            ],
            "css": [
                "css\/redditContentScriptStyle.css"
            ],
            "js": [
                "js\/redditContentScript.js"
            ],
            "all_frames": true
        }
    ]
}