Lofter抓文插件
This extension gets serial lofter articles from a certain user
Lofter抓文插件คืออะไร?
Lofter抓文插件 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "This extension gets serial lofter articles from a certain user"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Lofter抓文插件
ดาวน์โหลดไฟล์ส่วนขยาย Lofter抓文插件 ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
简介: -插件能在Lofter博主归档页的标题列表中搜索关键字,抓取含关键词的正文,按时间顺序自动整理成纯文本。 2.1.0 版本: -优化界面 -无法加载更多文章时,可以手动开始抓取 2.0.0 版本: -改进算法,速度更快 -增加状态提示,随时掌握插件运行进度 -自动拖拽加载较长的归档页,抓文不再有缺漏 -增加全选复制按钮 -添加二次传播禁止提醒与版权声明
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Lofter抓文插件 |
ID | ilabeeklpmaacpjamehodpkgkjidnmpf |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/lofter%E6%8A%93%E6%96%87%E6%8F%92%E4%BB%B6/ilabeeklpmaacpjamehodpkgkjidnmpf |
คำอธิบาย | This extension gets serial lofter articles from a certain user |
ขนาดไฟล์ | 15.38 KB |
จำนวนการติดตั้ง | 2,031 |
เวอร์ชันปัจจุบัน | 2.1.0 |
อัปเดตครั้งล่าสุด | 2018-04-15 |
วันที่เผยแพร่ | 2018-04-14 |
คะแนน | 4.85/5 รวมทั้งหมด 27 คะแนน |
ผู้พัฒนา | Unknown |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | http://afanvera.lofter.com/post/112bb7_7f453be |
ภาษาที่รองรับ | zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Lofter\u6293\u6587\u63d2\u4ef6", "description": "This extension gets serial lofter articles from a certain user", "version": "2.1.0", "icons": { "48": "icon48.png" }, "background": { "scripts": [ "popup.js" ], "persistent": false }, "browser_action": { "default_title": "Lofter\u6293\u6587\u63d2\u4ef6", "default_icon": { "19": "icon19.png", "38": "icon38.png" }, "default_popup": "popup.html", "default_locale": "zh_CN" }, "content_scripts": [ { "matches": [ "http:\/\/*.lofter.com\/*" ], "js": [ "contentScript.js" ], "css": [ "contentStyle.css" ] } ], "permissions": [ "clipboardWrite", "unlimitedStorage", "background", "tabs", "storage", "activeTab", "http:\/\/*.lofter.com\/*" ], "externally_connectable": { "matches": [ "*:\/\/*.lofter.com\/*" ] } } |