Bookmark All

Extends chrome's bookmark all tabs feature across all open windows.

ما هو Bookmark All؟

Bookmark All هو إضافة Chrome تم تطويرها بواسطة Andrew Sutherland، والميزة الرئيسية لها هي "Extends chrome's bookmark all tabs feature across all open windows.".

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

screenshot

تحميل ملف CRX للإضافة Bookmark All

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

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

                        Super simple extension. Extends chrome's 'Bookmark all Tabs' feature across all open windows. 

Click the icon, choose your folder (ISO 8601 Short by default) and every tab in every window is bookmarked into the new folder under 'Other Bookmarks'. That's it!

This extension is open sourced on github, see Details > Website.                    

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

الاسم Bookmark All Bookmark All
ID jjhpikpjjhlcmifagompgmhkjalhjopj
عنوان URL الرسمي https://chromewebstore.google.com/detail/bookmark-all/jjhpikpjjhlcmifagompgmhkjalhjopj
الوصف Extends chrome's bookmark all tabs feature across all open windows.
حجم الملف 67 KB
عدد التثبيتات 3,483
النسخة الحالية 4
آخر تحديث 2013-08-26
تاريخ النشر 2013-08-26
تقييم 4.18/5 مجموع تقييمات 34
المطور Andrew Sutherland
نوع الدفع free
موقع الإضافة https://github.com/drewis/chrome_extension_bookmark_all
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "4",
    "name": "Bookmark All",
    "author": "Andrew Sutherland",
    "description": "Extends chrome's bookmark all tabs feature across all open windows.",
    "permissions": [
        "bookmarks",
        "tabs"
    ],
    "icons": {
        "128": "star_icons_128.png",
        "48": "star_icons_48.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "star_icons_19.png",
            "38": "star_icons_38.png"
        },
        "default_popup": "popup.html",
        "default_title": "Bookmark All"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}