Twitter Timeline Auto Update

Updates the twitter timeline automatically when new tweets can be shown.

ما هو Twitter Timeline Auto Update؟

Twitter Timeline Auto Update هو إضافة Chrome تم تطويرها بواسطة https://systemcluster.me، والميزة الرئيسية لها هي "Updates the twitter timeline automatically when new tweets can be shown.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Twitter Timeline Auto Update

قم بتنزيل ملفات الامتداد Twitter Timeline Auto Update بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        Twitter Auto Update updates the twitter timeline automatically, removing the need of the additional user interaction each time new tweets should be shown.

By default the extension only updates the timeline while it isn't scrolled down, an option is provided to enable unconditional updates.                    

معلومات أساسية عن التمديد

الاسم Twitter Timeline Auto Update Twitter Timeline Auto Update
ID ddbjabcmjjifognjcopebcllgpbdjlbm
عنوان URL الرسمي https://chromewebstore.google.com/detail/twitter-timeline-auto-upd/ddbjabcmjjifognjcopebcllgpbdjlbm
الوصف Updates the twitter timeline automatically when new tweets can be shown.
حجم الملف 23.5 KB
عدد التثبيتات 1,085
النسخة الحالية 0.3
آخر تحديث 2018-07-28
تاريخ النشر 2018-07-28
تقييم 3.33/5 مجموع تقييمات 9
المطور https://systemcluster.me
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Twitter Timeline Auto Update",
    "short_name": "Twitter Refresh",
    "description": "Updates the twitter timeline automatically when new tweets can be shown.",
    "version": "0.3",
    "options_ui": {
        "page": "chrome\/content\/settings_inline.html",
        "chrome_style": true
    },
    "icons": {
        "64": "chrome\/skin\/icon64.png",
        "128": "chrome\/skin\/icon128.png",
        "256": "chrome\/skin\/icon256.png"
    },
    "background": {
        "scripts": [
            "lib\/background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "lib\/inject.js"
            ],
            "matches": [
                "*:\/\/twitter.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "*:\/\/twitter.com\/*"
    ]
}