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 |
官方網址 | 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 |
電子郵箱 | [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" } } |