Bookmark reminders

Never ever forget important bookmarks again

ما هو Bookmark reminders؟

Bookmark reminders هو إضافة Chrome تم تطويرها بواسطة Fastcast، والميزة الرئيسية لها هي "Never ever forget important bookmarks again".

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

screenshot
screenshot
screenshot

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

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

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

                        After installing please restart / reset your browser.

We developed bookmark reminders as a tool to help our team navigate through all the research we are doing online. Along the way, we bookmark many of the sites we find, for later deep diving. As it happens, you always end up forgetting about some of the saved items. This is pretty bad when the things you saved are important either for your work or for personal use. Some of us use pocket or similar bookmark management apps, but unfortunately, the number of bookmarks always piles up and becomes close to unmanageable. This is the reason why we developed a super simple google chrome extension that will remind you of the most recent saved bookmarks and will help you NOT FORGET about the important things you saved for later.

The first version of the product brings the following features:
- 1x per day (by default at noon) a reminder message is triggered inside your google chrome browser, showing a random bookmark you saved
- the reminder message displays 2 buttons, so when the message appears you can choose between: "not interested" and "remind me in 30 min"
- you can trigger the reminder manually at any given time, and it will always display another saved bookmark
- the reminder does NOT display any bookmark more than once unless you select "remind me later"                    

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

الاسم Bookmark reminders Bookmark reminders
ID jcgolljdpimhpahhbbcjieombclomimm
عنوان URL الرسمي https://chromewebstore.google.com/detail/bookmark-reminders/jcgolljdpimhpahhbbcjieombclomimm
الوصف Never ever forget important bookmarks again
حجم الملف 75.37 KB
عدد التثبيتات 25
النسخة الحالية 0.0.1
آخر تحديث 2020-05-15
تاريخ النشر 2020-05-15
المطور Fastcast
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Bookmark reminders",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "Never ever forget important bookmarks again",
    "homepage_url": "https:\/\/www.fastcast.me",
    "icons": {
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "js\/chrome-extension-async.js",
            "js\/lodash.min.js",
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": "icons\/icon48.png",
        "default_title": "Bookmark reminders"
    },
    "permissions": [
        "bookmarks",
        "tabs",
        "alarms",
        "storage",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "css\/toastr.css",
                "src\/inject\/inject.css"
            ]
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/jquery-3.4.1.min.js",
                "js\/toastr.min.js",
                "src\/inject\/inject.js"
            ]
        }
    ]
}