Twitter Refresher

Loads new Tweets on Twitter if you are at the top of the page. Will not load new tweets if you are below the 'new tweets' link.

ما هو Twitter Refresher؟

Twitter Refresher هو إضافة Chrome تم تطويرها بواسطة Cratos Design، والميزة الرئيسية لها هي "Loads new Tweets on Twitter if you are at the top of the page. Will not load new tweets if you are below the 'new tweets' link.".

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

screenshot

تحميل ملف CRX للإضافة Twitter Refresher

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

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

                        This will automatically click on the load new tweets but only if you are at the top of the page.  Many of the other extensions will always click on it which causes you to scroll back to the top of the screen.  This one takes into account where you are at the page and will only "click" the load link when you are at the top.                    

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

الاسم Twitter Refresher Twitter Refresher
ID egbgccfgdplkmpddefhjihakjhlnmlhe
عنوان URL الرسمي https://chromewebstore.google.com/detail/twitter-refresher/egbgccfgdplkmpddefhjihakjhlnmlhe
الوصف Loads new Tweets on Twitter if you are at the top of the page. Will not load new tweets if you are below the 'new tweets' link.
حجم الملف 43.04 KB
عدد التثبيتات 382
النسخة الحالية 1.0
آخر تحديث 2015-03-27
تاريخ النشر 2015-03-27
تقييم 3.40/5 مجموع تقييمات 5
المطور Cratos Design
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "jquery-1.7.2.min.js",
                "functions.js"
            ],
            "matches": [
                "http:\/\/twitter.com\/*",
                "https:\/\/twitter.com\/*"
            ],
            "run_at": "document_idle"
        }
    ],
    "description": "Loads new Tweets on Twitter if you are at the top of the page.  Will not load new tweets if you are below the 'new tweets' link.",
    "icons": {
        "128": "images\/twitter.png",
        "48": "images\/twitter.png"
    },
    "manifest_version": 2,
    "name": "Twitter Refresher",
    "permissions": [
        "http:\/\/twitter.com\/",
        "https:\/\/twitter.com\/"
    ],
    "version": "1.0",
    "web_accessible_resources": [
        "reload.js"
    ]
}