Twitter Toolbox

Provides several tools to change the Twitter website to suit you.

Twitter Toolboxคืออะไร?

Twitter Toolbox เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Isaac Whitfield และคุณลักษณะหลักของมันคือ "Provides several tools to change the Twitter website to suit you."

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

screenshot
screenshot

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

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

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

                        Tired of not being able to customize Twitter how you like it? Then this extension is for you! 

I made the base for this a while ago, but decided I should turn it into something better, so here's a basic implementation. It allows you to change various aspects of Twitter.

1. Show your full tweet number instead of 22.9K
2. Extend your profile header to be full-size.
3. Remove your profile header completely
4. Remove the "Who To Follow" box
5. Remove the "Top Trends" box
6. Remove the "Photos and Videos" box
7. Remove "Promotional Tweets"

All options are configurable via the icon in the URL bar when on Twitter, or via the Extensions options page. If there are feature requests, let me know and I'll implement them.

The source can be found here: https://github.com/iwhitfield/TwitterToolbox                    

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

ชื่อ Twitter Toolbox Twitter Toolbox
ID akigidnfaadplbagdcahkhajlignocfh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/twitter-toolbox/akigidnfaadplbagdcahkhajlignocfh
คำอธิบาย Provides several tools to change the Twitter website to suit you.
ขนาดไฟล์ 71.04 KB
จำนวนการติดตั้ง 146
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2014-03-21
วันที่เผยแพร่ 2014-03-21
คะแนน 2.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Isaac Whitfield
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitter Toolbox",
    "version": "1.1",
    "manifest_version": 2,
    "description": "Provides several tools to change the Twitter website to suit you.",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "page_action": {
        "default_icon": "icons\/icon48.png",
        "default_popup": "options.html",
        "default_title": "Twitter Toolbox"
    },
    "options_page": "options.html",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/twitter.com\/*"
            ],
            "js": [
                "js\/jquery-1.8.3.min.js",
                "js\/waitForKeyElements.js",
                "js\/twitterstyle.js"
            ],
            "run_at": "document_end"
        }
    ]
}