Fave It!

Bookmark Facebook posts by just clicking 'FaveIt' next to it!

Fave It!คืออะไร?

Fave It! เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Karthik Subramanian และคุณลักษณะหลักของมันคือ "Bookmark Facebook posts by just clicking 'FaveIt' next to it!"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Fave It!

ดาวน์โหลดไฟล์ส่วนขยาย Fave It! ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        Tired of scrolling down the Facebook stream to find interesting posts by your buddies a few days back? 
Here's an ultimate tool to bookmark posts in the Facebook stream without opening the post or right clicking it.

Just click 'Faveit' and the link is automagically added to a separate folder called 'Fav'd Bookmarks' in your Google Chrome bookmarks bar.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Fave It! Fave It!
ID mhojcabdgagooepopmfcimnkflgihnjg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/fave-it/mhojcabdgagooepopmfcimnkflgihnjg
คำอธิบาย Bookmark Facebook posts by just clicking 'FaveIt' next to it!
ขนาดไฟล์ 548 KB
จำนวนการติดตั้ง 13
เวอร์ชันปัจจุบัน 1.0.0
อัปเดตครั้งล่าสุด 2016-09-21
วันที่เผยแพร่ 2016-09-21
คะแนน 5.00/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา Karthik Subramanian
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/yeskarthik/fave-it
URL หน้าช่วยเหลือ https://github.com/yeskarthik/fave-it/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Fave It!",
    "description": "Bookmark Facebook posts by just clicking 'FaveIt' next to it!",
    "version": "1.0.0",
    "permissions": [
        "webRequest",
        "bookmarks",
        "background",
        "tabs",
        "http:\/\/www.facebook.com\/*",
        "https:\/\/www.facebook.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.facebook.com\/*",
                "https:\/\/www.facebook.com\/*"
            ],
            "js": [
                "jquery-1.11.0.min.js",
                "inject.js"
            ],
            "css": [
                "faveit-style.css"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "jquery-1.11.0.min.js",
            "background.js"
        ]
    },
    "icons": {
        "128": "bookmark.png"
    }
}