Sifter

A simple but effective text annotator, which helps save annotations from the web.

ما هو Sifter؟

Sifter هو إضافة Chrome تم تطويرها بواسطة Unknown، والميزة الرئيسية لها هي "A simple but effective text annotator, which helps save annotations from the web.".

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

screenshot

تحميل ملف CRX للإضافة Sifter

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

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

                        Sifter is a browser extension that highlights web pages with different colors. These highlighted paragraphs are saved in a bookmark and can be queried by searching or revisiting the page. 

 Features

- Highlights webpages and pdfs with different colors for future usage.
- Automatically highlights the saved paragraph upon re-visiting the page. 
It- Easy to navigate to the saved paragraph through search explorer.
- Export highlighted paragraph through email.

 This extension is written ontop of YAWAS extension.                    

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

الاسم Sifter Sifter
ID bebodpkbnglejbdlmbmkllkpgambldld
عنوان URL الرسمي https://chromewebstore.google.com/detail/sifter/bebodpkbnglejbdlmbmkllkpgambldld
الوصف A simple but effective text annotator, which helps save annotations from the web.
حجم الملف 770 KB
عدد التثبيتات 30
النسخة الحالية 1.0.0
آخر تحديث 2022-05-20
تاريخ النشر 2022-05-19
تقييم 5.00/5 مجموع تقييمات 1
المطور Unknown
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://sifter.news
عنوان صفحة المساعدة https://sifter.news
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Sifter",
    "author": "Suman Kunwar",
    "manifest_version": 3,
    "version": "1.0.0",
    "description": "A simple but effective text annotator, which helps save annotations from the web.",
    "background": {
        "service_worker": "yawas-background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "exclude_matches": [
                "*:\/\/*.slack.com\/*",
                "*:\/\/web.whatsapp.com\/*",
                "*:\/\/www.google.com\/bookmarks\/*",
                "*:\/\/accounts.google.com\/*"
            ],
            "js": [
                "yawas-content-script.js"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "localsearch.html",
                "localedit.html"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage",
        "contextMenus",
        "tabs",
        "bookmarks"
    ],
    "action": {
        "default_title": "Sifter",
        "default_icon": "shifter_on_128.png",
        "default_popup": "options.html"
    },
    "icons": {
        "128": "shifter_on_128.png"
    },
    "commands": {
        "yawas-yellow": {
            "suggested_key": {
                "default": "Ctrl+Shift+Y",
                "mac": "Alt+Shift+Y"
            },
            "description": "Yawas Yellow"
        },
        "yawas-red": {
            "suggested_key": {
                "default": "Ctrl+Shift+R",
                "mac": "Alt+Shift+R"
            },
            "description": "Yawas Red"
        },
        "yawas-blue": {
            "suggested_key": {
                "default": "Ctrl+Shift+B",
                "mac": "Alt+Shift+B"
            },
            "description": "Yawas Blue"
        },
        "yawas-green": {
            "suggested_key": {
                "default": "Ctrl+Shift+G",
                "mac": "Alt+Shift+G"
            },
            "description": "Yawas Green"
        }
    }
}