Sifter

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

Sifter là gì?

Sifter là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "A simple but effective text annotator, which helps save annotations from the web.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Sifter

Tải xuống các tệp mở rộng Sifter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Sifter Sifter
ID bebodpkbnglejbdlmbmkllkpgambldld
URL Chính Thức https://chromewebstore.google.com/detail/sifter/bebodpkbnglejbdlmbmkllkpgambldld
Mô tả A simple but effective text annotator, which helps save annotations from the web.
Kích Thước Tệp 770 KB
Số Lần Cài Đặt 30
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2022-05-20
Ngày Phát Hành 2022-05-19
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Unknown
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://sifter.news
URL Trang Trợ Giúp https://sifter.news
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    }
}