Twitter Cards expander

Automatically expand all Twitter Cards. Because they are beautiful and you love them.

Twitter Cards expanderคืออะไร?

Twitter Cards expander เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jdesjardinsbernier และคุณลักษณะหลักของมันคือ "Automatically expand all Twitter Cards. Because they are beautiful and you love them."

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

screenshot

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

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

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

                        Enhance the use of Twitter Cards by expanding them automatically.

You know the big bad-ass summaries you can expand by clicking "view summary" ? Well you won't have to click on it anymore.                    

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

ชื่อ Twitter Cards expander Twitter Cards expander
ID ndppfobgkneohcoegnmlgdcfdgefmpgm
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/twitter-cards-expander/ndppfobgkneohcoegnmlgdcfdgefmpgm
คำอธิบาย Automatically expand all Twitter Cards. Because they are beautiful and you love them.
ขนาดไฟล์ 141 KB
จำนวนการติดตั้ง 24
เวอร์ชันปัจจุบัน 0.0.2
อัปเดตครั้งล่าสุด 2014-11-27
วันที่เผยแพร่ 2014-11-27
ผู้พัฒนา jdesjardinsbernier
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://github.com/jackdbernier/twitter-card-expander
URL หน้าช่วยเหลือ http://github.com/jackdbernier/twitter-card-expander/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitter Cards expander",
    "version": "0.0.2",
    "manifest_version": 2,
    "description": "Automatically expand all Twitter Cards. Because they are beautiful and you love them.",
    "homepage_url": "http:\/\/extensionizr.com",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "options_page": "src\/options\/index.html",
    "page_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "page action demo",
        "default_popup": "src\/page_action\/page_action.html"
    },
    "permissions": [
        "https:\/\/www.twitter.com\/*",
        "https:\/\/twitter.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.twitter.com\/*",
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "js\/jquery\/jquery.min.js",
                "src\/inject\/inject.js"
            ]
        }
    ]
}