Search User Tweets

Adds a new search box so you can easily search tweets from that user's timeline.

Search User Tweetsคืออะไร?

Search User Tweets เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jmwhittaker และคุณลักษณะหลักของมันคือ "Adds a new search box so you can easily search tweets from that user's timeline."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Search User Tweets

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

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

                        Adds a new search box on a Twitter user page (example: https://twitter.com/jmwhittaker) underneath the follow & message buttons. 

The search will return results from that users timeline only. Hand for finding a tweet by a specific user that you have forgotten, or even seeing tweets on a certain topic or hashtag from a specific user. Even works on your own profile page :)                    

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

ชื่อ Search User Tweets Search User Tweets
ID ijnjbefcmdhoghgihgpiogpkhgmncdhh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/search-user-tweets/ijnjbefcmdhoghgihgpiogpkhgmncdhh
คำอธิบาย Adds a new search box so you can easily search tweets from that user's timeline.
ขนาดไฟล์ 12.93 KB
จำนวนการติดตั้ง 21
เวอร์ชันปัจจุบัน 0.1
อัปเดตครั้งล่าสุด 2015-09-17
วันที่เผยแพร่ 2015-09-17
คะแนน 1.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา jmwhittaker
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Search User Tweets",
    "version": "0.1",
    "description": "Adds a new search box so you can easily search tweets from that user's timeline.",
    "author": "James Whittaker",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/**"
            ],
            "css": [
                "styles.css"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}