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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

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