Lofter抓文插件

This extension gets serial lofter articles from a certain user

Lofter抓文插件란 무엇입니까?

Lofter抓文插件은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension gets serial lofter articles from a certain user"입니다.

확장 프로그램 스크린샷

screenshot

Lofter抓文插件 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        简介:
 -插件能在Lofter博主归档页的标题列表中搜索关键字,抓取含关键词的正文,按时间顺序自动整理成纯文本。

2.1.0 版本:
 -优化界面
 -无法加载更多文章时,可以手动开始抓取

2.0.0 版本:
 -改进算法,速度更快
 -增加状态提示,随时掌握插件运行进度
 -自动拖拽加载较长的归档页,抓文不再有缺漏
 -增加全选复制按钮
 -添加二次传播禁止提醒与版权声明                    

확장 프로그램 기본 정보

이름 Lofter抓文插件 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\/*"
        ]
    }
}