Scraper

RSS, Atom Feed Reader & Web Crawler

什么是Scraper?

Scraper是由https://wepplication.github.io开发的Chrome扩展程序,该扩展的主要功能是“RSS, Atom Feed Reader & Web Crawler”。

扩展截图

screenshot
screenshot
screenshot

下载Scraper扩展crx文件

下载Scraper扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        RSS, Atom Feed Reader & Web Crawler

*** Features ***
1. Find the RSS/Atom address by entering the website URL
2. Register keyword to display specific text notifications
3. Creating a Site Web crawler that does not support RSS
4. View other people's web crawlers

Shortcut key: 
Shift + Alt + E (MacOS: Shift + Command + E)                    

扩展基本信息

名称 Scraper Scraper
ID caijpifkkcjfejgmcgahalhgdbalinof
官方URL https://chromewebstore.google.com/detail/scraper/caijpifkkcjfejgmcgahalhgdbalinof
简介 RSS, Atom Feed Reader & Web Crawler
文件大小 1.03 MB
安装次数 769
当前版本 1.2.9
更新时间 2024-01-11
上架时间 2020-01-13
评分 4.57/5 共7次评分
开发者 https://wepplication.github.io
电子邮箱 [email protected]
付费类型 free
隐私政策页面URL https://wepplication.github.io/tools/scrapper/policy.html
支持的语言 en,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_app_name__",
    "version": "1.2.9",
    "default_locale": "en",
    "description": "__MSG_app_desc__",
    "permissions": [
        "notifications",
        "alarms",
        "storage",
        "management",
        "idle",
        "tabs",
        "unlimitedStorage",
        "offscreen"
    ],
    "optional_host_permissions": [
        "*:\/\/*\/*"
    ],
    "background": {
        "service_worker": "worker.js"
    },
    "content_scripts": [
        {
            "js": [
                "js\/browser-polyfill.min.js",
                "js\/feed_finder.js",
                "doc_start.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        },
        {
            "js": [
                "js\/browser-polyfill.min.js",
                "js\/feed_finder.js",
                "doc_idle.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/rss-16.png",
            "32": "images\/rss-32.png",
            "48": "images\/rss-48.png",
            "128": "images\/rss-128.png"
        }
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Alt+Shift+E",
                "mac": "Command+Shift+E"
            },
            "description": "Popup toggle"
        }
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "icons": {
        "16": "images\/rss-16.png",
        "32": "images\/rss-32.png",
        "48": "images\/rss-48.png",
        "128": "images\/rss-128.png"
    },
    "manifest_version": 3
}