Scroll Bookmarker

Save your place on a web page to view again later

ما هو Scroll Bookmarker؟

Scroll Bookmarker هو إضافة Chrome تم تطويرها بواسطة Owen، والميزة الرئيسية لها هي "Save your place on a web page to view again later".

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

screenshot

تحميل ملف CRX للإضافة Scroll Bookmarker

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

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

                        This chrome extension allows you to save your scroll position on any given website and access that position again at a later date. You may have multiple scroll positions saved on any one web page at a time. The extension allows you to create these scroll markers, cycle through them, and delete them.                    

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

الاسم Scroll Bookmarker Scroll Bookmarker
ID plnmmjpilknfapheonmhlapbfkkcaeko
عنوان URL الرسمي https://chromewebstore.google.com/detail/scroll-bookmarker/plnmmjpilknfapheonmhlapbfkkcaeko
الوصف Save your place on a web page to view again later
حجم الملف 1.18 MB
عدد التثبيتات 487
النسخة الحالية 1.0.0
آخر تحديث 2018-04-08
تاريخ النشر 2018-04-08
تقييم 3.00/5 مجموع تقييمات 10
المطور Owen
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Scroll Bookmarker",
    "description": "Save your place on a web page to view again later",
    "version": "1.0.0",
    "offline_enabled": true,
    "browser_action": {
        "default_popup": ".\/index.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "js": [
                ".\/js\/content.min.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ],
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}