Tweet Grabber

This extension allows you to copy tweets to your clipboard.

Tweet Grabberคืออะไร?

Tweet Grabber เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "This extension allows you to copy tweets to your clipboard."

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Tweet Grabber

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

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

                        Adds a button to the Twitter UI to copy a tweet to your clipboard as HTML.                    

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

ชื่อ Tweet Grabber Tweet Grabber
ID jfkhmnmpppgaempelmhbicaelhnclkjc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/tweet-grabber/jfkhmnmpppgaempelmhbicaelhnclkjc
คำอธิบาย This extension allows you to copy tweets to your clipboard.
ขนาดไฟล์ 196 KB
จำนวนการติดตั้ง 40
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2017-12-04
วันที่เผยแพร่ 2017-12-04
ผู้พัฒนา Unknown
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tweet Grabber",
    "description": "This extension allows you to copy tweets to your clipboard.",
    "version": "1.0",
    "icons": {
        "16": "icon.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/twitter.com\/*",
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "jquery-2.1.4.min.js",
                "tweet-grabber.js"
            ],
            "css": [
                "tweet-grabber.css"
            ]
        }
    ]
}