ISBN Extractor
Automatically extract all ISBN from a webpage.
ISBN Extractorとは何ですか?
ISBN ExtractorはRayによって開発されたChromeの拡張機能で、その主な機能は「Automatically extract all ISBN from a webpage.」です。
拡張機能のスクリーンショット
ISBN Extractor拡張機能のCRXファイルをダウンロード
ISBN Extractor拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This is a simple extension that will extract all ISBN from any web page. Extracts all 10 or 13 digit ISBNs (even if separated by spaces or -). If you want to make the list comma separated or anything like that I recommend http://sortmylist.com/ **Update Version 1.1 ** Updated ISBN matching pattern. ISBN scraping now is a bit cleaner Updated to latest Google APIs Fixed problem of not extracting after switching tabs
拡張機能の基本情報
名前 | ISBN Extractor |
ID | bjillcfelggegochlahahhlfcgfmddip |
公式URL | https://chromewebstore.google.com/detail/isbn-extractor/bjillcfelggegochlahahhlfcgfmddip |
説明 | Automatically extract all ISBN from a webpage. |
ファイルサイズ | 535 KB |
インストール数 | 479 |
現在のバージョン | 1.1.2 |
最終更新日 | 2022-04-23 |
公開日 | 2016-06-21 |
評価 | 4.75/5 合計 4 レビュー |
開発者 | Ray |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "ISBN Extractor", "offline_enabled": true, "permissions": [ "webNavigation", "chrome:\/\/favicon\/", "https:\/\/*\/*", "http:\/\/*\/*", "tabs", "storage" ], "version": "1.1.2", "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "background": { "scripts": [ "js\/background.js" ], "persistent": true }, "browser_action": { "default_icon": "icons\/icon512.png", "default_title": "ISBN Extractor!", "default_popup": "src\/page_action\/page_action.html" }, "content_scripts": [ { "js": [ "js\/content.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/*" ], "run_at": "document_end" } ], "description": "Automatically extract all ISBN from a webpage.", "icons": { "512": "icons\/icon512.png" } } |