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

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

                        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
عنوان صفحة المساعدة 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"
    }
}