Twitter Direct Links
Makes links in twitter feed direct.
Twitter Direct Linksคืออะไร?
Twitter Direct Links เป็นส่วนขยายของ Chrome ที่พัฒนาโดย philatov และคุณลักษณะหลักของมันคือ "Makes links in twitter feed direct."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Twitter Direct Links
ดาวน์โหลดไฟล์ส่วนขยาย Twitter Direct Links ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension may be useful when you have a difficulties with t.co link shortener. Extension is just replaces link with direct one.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Twitter Direct Links |
ID | chgdginonhphdfgpbhcnhmmglobclkie |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/twitter-direct-links/chgdginonhphdfgpbhcnhmmglobclkie |
คำอธิบาย | Makes links in twitter feed direct. |
ขนาดไฟล์ | 45.09 KB |
จำนวนการติดตั้ง | 38 |
เวอร์ชันปัจจุบัน | 1.0.1 |
อัปเดตครั้งล่าสุด | 2014-04-19 |
วันที่เผยแพร่ | 2014-04-19 |
คะแนน | 3.75/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | philatov |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "1.0.1", "name": "__MSG_appName__", "description": "__MSG_appDesc__", "default_locale": "en", "background": { "scripts": [ "background.js" ] }, "icons": { "16": "icon-16.png", "32": "icon-32.png", "64": "icon-64.png", "128": "icon-128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*.twitter.com\/*", "https:\/\/*.twitter.com\/*" ], "js": [ "jquery-2.1.0.min.js", "contentscript.js" ] } ], "permissions": [ "tabs", "http:\/\/*.twitter.com\/", "https:\/\/*.twitter.com\/" ], "page_action": { "default_title": "Twitter Direct Links", "default_icon": { "19": "icon-19.png", "38": "icon-38.png" } } } |