Twitter Cleaner

Removes annoying twitter boxes

Twitter Cleaner là gì?

Twitter Cleaner là một tiện ích mở rộng Chrome được phát triển bởi https://cavar.net, và tính năng chính của nó là "Removes annoying twitter boxes".

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

screenshot

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

Tải xuống các tệp mở rộng Twitter Cleaner 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

                        Removes trending, who to follow and footer boxes.
Report any issues here https://github.com/Palethorn/twitter_cleaner/issues                    

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

Tên Twitter Cleaner Twitter Cleaner
ID oocpmdgjlccdinophpbbkmfdjooflfac
URL Chính Thức https://chrome.google.com/webstore/detail/twitter-cleaner/oocpmdgjlccdinophpbbkmfdjooflfac
Mô tả Removes annoying twitter boxes
Kích Thước Tệp 92.48 KB
Số Lần Cài Đặt 50
Phiên Bản Hiện Tại 2.0.0
Cập Nhật Lần Cuối 2019-11-21
Ngày Phát Hành 2019-11-21
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://cavar.net
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Palethorn/twitter_cleaner
URL Trang Trợ Giúp https://github.com/Palethorn/twitter_cleaner/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitter Cleaner",
    "version": "2.0.0",
    "manifest_version": 2,
    "applications": {
        "gecko": {
            "id": "[email protected]"
        }
    },
    "description": "Removes annoying twitter boxes",
    "icons": {
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon128.png",
        "default_popup": "menu.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/twitter.com\/*",
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}