Search On Twitter
Adds 'Open Twitter Profile' and 'Search on Twitter' options to the context menu
Search On Twitterคืออะไร?
Search On Twitter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://www.thetravisw.com และคุณลักษณะหลักของมันคือ "Adds 'Open Twitter Profile' and 'Search on Twitter' options to the context menu"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Search On Twitter
ดาวน์โหลดไฟล์ส่วนขยาย Search On Twitter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Search On Twitter adds to the Right-Click context menu. If the selected text starts with "@", the option to open Twitter profile will be presented. If the selected does not begin with "@", then the option to search on Twitter will be presented. Source Code - https://github.com/travis-w/Search-On-Twitter
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | dhpmpdpphfgejncefefmdhklfbliefkm |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/search-on-twitter/dhpmpdpphfgejncefefmdhklfbliefkm |
คำอธิบาย | Adds 'Open Twitter Profile' and 'Search on Twitter' options to the context menu |
ขนาดไฟล์ | 9.53 KB |
จำนวนการติดตั้ง | 465 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2014-09-28 |
วันที่เผยแพร่ | 2014-09-28 |
คะแนน | 3.71/5 รวมทั้งหมด 7 คะแนน |
ผู้พัฒนา | http://www.thetravisw.com |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Search On Twitter", "description": "Adds 'Open Twitter Profile' and 'Search on Twitter' options to the context menu ", "version": "1.0", "manifest_version": 2, "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "permissions": [ "contextMenus", "tabs" ], "background": { "scripts": [ "js\/main.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/contentscript.js" ] } ] } |