ISBN Extractor
Automatically extract all ISBN from a webpage.
Was ist ISBN Extractor?
ISBN Extractor ist eine Chrome-Erweiterung, die von Ray entwickelt wurde, und ihr Hauptmerkmal ist "Automatically extract all ISBN from a webpage.".
Erweiterungsscreenshots
ISBN Extractor-Erweiterungs-CRX-Datei herunterladen
Laden Sie ISBN Extractor-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | ISBN Extractor |
ID | bjillcfelggegochlahahhlfcgfmddip |
Offizielle URL | https://chromewebstore.google.com/detail/isbn-extractor/bjillcfelggegochlahahhlfcgfmddip |
Beschreibung | Automatically extract all ISBN from a webpage. |
Dateigröße | 535 KB |
Installationsanzahl | 479 |
Aktuelle Version | 1.1.2 |
Letztes Update | 2022-04-23 |
Veröffentlichungsdatum | 2016-06-21 |
Bewertung | 4.75/5 Insgesamt 4 Bewertungen |
Entwickler | Ray |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" } } |