ScreenScraper

Tool to automatically grab data from sites

ScreenScraper क्या है?

ScreenScraper https://bsalinas.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Tool to automatically grab data from sites"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में ScreenScraper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Automatically grab sets of data from websites and download it as a CSV or JSON file. Basically, a small extension that acts as a screen scraper and lets your easily scrape data from a website.

Let's say you have a website with:
Joe Seattle
Jean Austin
Ben Boston
Grab all that data by selecting ".foo" and then make columns for ".name", ".city", and the "src" attribute of "img". Enjoy your screen scraping!

एक्सटेंशन की मूल जानकारी

नाम ScreenScraper ScreenScraper
ID pfegffhjcgkneoemnlniggnhkfioidjg
आधिकारिक URL https://chromewebstore.google.com/detail/screenscraper/pfegffhjcgkneoemnlniggnhkfioidjg
विवरण Tool to automatically grab data from sites
फ़ाइल का आकार 135 KB
स्थापना संख्या 4,020
वर्तमान संस्करण 0.3.1
अंतिम अपडेट 2013-07-15
प्रकाशन तिथि 2013-07-15
रेटिंग 3.00/5 कुल 34 रेटिंग्स
डेवलपर https://bsalinas.com
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ScreenScraper",
    "description": "Tool to automatically grab data from sites",
    "version": "0.3.1",
    "icons": {
        "128": "logo_128.png",
        "48": "logo_48.png",
        "16": "logo_16.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "content_scripts": [
        {
            "all_frames": false,
            "js": [
                "jquery-1.9.1.min.js",
                "myscript.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "browser_action": {
        "default_title": "ScreenScraper",
        "default_popup": "popup.html",
        "default_icon": {
            "19": "logo_19.png",
            "38": "logo_38.png"
        }
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "tabs"
    ]
}