リンクゲッター
Webページからリンクを抜き出し一覧、ファイル出力するための拡張です
What is リンクゲッター?
リンクゲッター is a Chrome extension developed by しちりあ, and its main feature is "Webページからリンクを抜き出し一覧、ファイル出力するための拡張です".
Extension Screenshots
Download リンクゲッター Extension CRX File
Download リンクゲッター extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Webページからリンクを抜き出して一覧にし、ダウンロードを行う拡張機能です。 Webページ解析や、画像の一括ダウンロードなどに用いるものです。 特徴 ・使いやすさとわかりやすさを追求したシンプルな画面構成 ・正規表現によるリンクの絞り込み ・一括ダウンロード ・Zipによる一括ダウンロード 使い方 1,適当なWebページでアイコンをクリック 2,出てきた一覧画面でリンクを絞り込み、ダウンロード
Extension Basic Information
Name | リンクゲッター |
ID | igpcihacmecgdikngokdhhiaomlokogn |
Official URL | https://chromewebstore.google.com/detail/%E3%83%AA%E3%83%B3%E3%82%AF%E3%82%B2%E3%83%83%E3%82%BF%E3%83%BC/igpcihacmecgdikngokdhhiaomlokogn |
Description | Webページからリンクを抜き出し一覧、ファイル出力するための拡張です |
File Size | 74.3 KB |
Installation Count | 4,026 |
Current Version | 1.0.0 |
Last Updated | 2015-09-06 |
Publish Date | 2015-09-06 |
Rating | 5.00/5 Total 1 Ratings |
Developer | しちりあ |
Payment Type | free |
Help Page URL | http://blog.livedoor.jp/shichiria/ |
Supported Languages | ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "\u30ea\u30f3\u30af\u30b2\u30c3\u30bf\u30fc", "version": "1.0.0", "description": "Web\u30da\u30fc\u30b8\u304b\u3089\u30ea\u30f3\u30af\u3092\u629c\u304d\u51fa\u3057\u4e00\u89a7\u3001\u30d5\u30a1\u30a4\u30eb\u51fa\u529b\u3059\u308b\u305f\u3081\u306e\u62e1\u5f35\u3067\u3059", "manifest_version": 2, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "contentscript.js" ], "run_at": "document_end" } ], "browser_action": { "default_icon": "icons\/icon48.png", "default_title": "\u30ea\u30f3\u30af\u30b2\u30c3\u30bf\u30fc" } } |