Read Later Box

Read Later Box

ما هو Read Later Box؟

Read Later Box هو إضافة Chrome تم تطويرها بواسطة Kunihiro Ando، والميزة الرئيسية لها هي "Read Later Box".

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

screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Read Later Box

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

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

                        Read Later Box is a Chrome extension for easily Store links by drag and drop.

  

This extension allows you to save a page for later reading.

You can DragDrop a link to Read Later Box.




Sync--------------------------------------
 Using Bookmarks
 Minimum Chrome Version 38                    

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

الاسم Read Later Box Read Later Box
ID gmnimllnkdakojkiejmmgfjapmhngahl
عنوان URL الرسمي https://chromewebstore.google.com/detail/read-later-box/gmnimllnkdakojkiejmmgfjapmhngahl
الوصف Read Later Box
حجم الملف 186 KB
عدد التثبيتات 93
النسخة الحالية 2.8
آخر تحديث 2015-05-05
تاريخ النشر 2015-05-04
تقييم 5.00/5 مجموع تقييمات 1
المطور Kunihiro Ando
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Read Later Box",
    "version": "2.8",
    "description": "Read Later Box",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "all_frames": false,
            "run_at": "document_start",
            "js": [
                "contentscript.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "icon19.png",
        "default_title": "Read Later Box",
        "default_popup": "popup.html"
    },
    "commands": {
        "myCommandREADLATER": {
            "suggested_key": {
                "default": "Alt+L"
            },
            "description": "Send add read command"
        }
    },
    "web_accessible_resources": [
        "menu.png",
        "stack.html",
        "popup.html",
        "iframe.html"
    ],
    "content_security_policy": "script-src 'self';img-src *; frame-src *; object-src 'self'",
    "permissions": [
        "chrome:\/\/favicon\/*",
        "tabs",
        "bookmarks"
    ]
}