Bookmark This

Create bookmark entries from links in a page

ما هو Bookmark This؟

Bookmark This هو إضافة Chrome تم تطويرها بواسطة Owen Rumney، والميزة الرئيسية لها هي "Create bookmark entries from links in a page".

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

screenshot

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

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

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

                        Don't interrupt your flow when reading an article, create bookmarks from any link in the current page, with out having to load the link.

Simply right click the link and select "Bookmark this", if the suggested bookmark title isn't right, just change it.

Early stages, so feedback welcome.                    

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

الاسم Bookmark This Bookmark This
ID cdgfikopcomgllhdlknlfgblhmhemljn
عنوان URL الرسمي https://chrome.google.com/webstore/detail/bookmark-this/cdgfikopcomgllhdlknlfgblhmhemljn
الوصف Create bookmark entries from links in a page
حجم الملف 9.47 KB
عدد التثبيتات 28
النسخة الحالية 0.9.3
آخر تحديث 2019-05-30
تاريخ النشر 2019-05-30
تقييم 2.00/5 مجموع تقييمات 6
المطور Owen Rumney
نوع الدفع free
اللغات المدعومة en-GB
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Bookmark This",
    "description": "Create bookmark entries from links in a page",
    "version": "0.9.3",
    "permissions": [
        "bookmarks",
        "contextMenus",
        "tabs",
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "main.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "runat": "document_end"
        }
    ],
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "manifest_version": 2
}