De-t.co

This extension points all t.co urls on a page to their expanded url.

De-t.coคืออะไร?

De-t.co เป็นส่วนขยายของ Chrome ที่พัฒนาโดย johnpbloch และคุณลักษณะหลักของมันคือ "This extension points all t.co urls on a page to their expanded url."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย De-t.co

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

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

                        Sometimes twitter's url shortener is slow or unresponsive. Take them out of the equation.

This extension only runs on twitter.com and subdomains of twitter.com.

Since this is a background script, I added a screenshot of kittens. Not sure what else to do.

Image source: http://www.flickr.com/photos/35652310@N00/4139577452/                    

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

ชื่อ De-t.co De-t.co
ID jmdlmkhbhmlgkpjelenjcpgcldhednif
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/de-tco/jmdlmkhbhmlgkpjelenjcpgcldhednif
คำอธิบาย This extension points all t.co urls on a page to their expanded url.
ขนาดไฟล์ 17.79 KB
จำนวนการติดตั้ง 21
เวอร์ชันปัจจุบัน 1.1.1
อัปเดตครั้งล่าสุด 2016-09-13
วันที่เผยแพร่ 2016-09-12
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา johnpbloch
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "De-t.co",
    "description": "This extension points all t.co urls on a page to their expanded url.",
    "version": "1.1.1",
    "icons": {
        "16": "assets\/icon16.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "permissions": [
        "https:\/\/twitter.com\/",
        "https:\/\/*.twitter.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*",
                "https:\/\/*.twitter.com\/*"
            ],
            "js": [
                "src\/de-t.co.js"
            ]
        }
    ]
}