ScreenScraper
Tool to automatically grab data from sites
ScreenScraperとは何ですか?
ScreenScraperはhttps://bsalinas.comによって開発されたChromeの拡張機能で、その主な機能は「Tool to automatically grab data from sites」です。
拡張機能のスクリーンショット
ScreenScraper拡張機能のCRXファイルをダウンロード
ScreenScraper拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 SeattleJean AustinBen BostonGrab all that data by selecting ".foo" and then make columns for ".name", ".city", and the "src" attribute of "img". Enjoy your screen scraping!
拡張機能の基本情報
名前 | 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" ] } |