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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
            ]
        }
    ]
}