Tweet Grabber

This extension allows you to copy tweets to your clipboard.

Apa itu Tweet Grabber?

Tweet Grabber adalah ekstensi Chrome yang dikembangkan oleh Unknown, dan fitur utamanya adalah "This extension allows you to copy tweets to your clipboard.".

Unduh Berkas CRX Ekstensi Tweet Grabber

Unduh file ekstensi Tweet Grabber dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Tweet Grabber Tweet Grabber
ID jfkhmnmpppgaempelmhbicaelhnclkjc
URL Resmi https://chromewebstore.google.com/detail/tweet-grabber/jfkhmnmpppgaempelmhbicaelhnclkjc
Deskripsi This extension allows you to copy tweets to your clipboard.
Ukuran File 196 KB
Jumlah Instalasi 40
Versi Saat Ini 1.0
Terakhir Diperbarui 2017-12-04
Tanggal Publikasi 2017-12-04
Pengembang Unknown
Tipe Pembayaran free
Bahasa yang Didukung 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"
            ]
        }
    ]
}