ISBN Extractor
Automatically extract all ISBN from a webpage.
ISBN Extractorคืออะไร?
ISBN Extractor เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ray และคุณลักษณะหลักของมันคือ "Automatically extract all ISBN from a webpage."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ISBN Extractor
ดาวน์โหลดไฟล์ส่วนขยาย 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 ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| 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 |
| อีเมล | [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"
}
} | |