Huntly

Huntly - Automatic saving browsed contents

Huntly란 무엇입니까?

Huntly은(는) lcomplete에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Huntly - Automatic saving browsed contents"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Huntly 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Huntly 插件用于将浏览过的网页文章和推特发送到服务端,也提供文章预览的功能。

The Huntly plugin is used to send web articles and tweets that have been browsed to the server, and also provides a preview function for articles.

Huntly 中文介绍:

Huntly 是一个自托管的信息管理工具,简单来说,它包含以下功能:

- RSS 订阅和阅读。
- 自动保存浏览过的网页,随后以保存、稍后读、收藏或存档的方式将其保存。
- 针对推特网站有特殊的处理,会自动保存请求过的推特 timeline,记录是否浏览过,在 huntly 中你甚至可以用更方便的方式重新查看这些推文。
- 可以从标题、内容、类型、收藏方式等维度进行搜索。
- 连接其他服务,目前支持 GitHub,所以它也是一个 Github stars 管理工具。

Huntly English Introduction:

Huntly is a self-hosted information management tool, in simple terms, contains the following features.

- RSS subscription and reading.
- Automatically saves the pages that have been viewed, then you can saves them as read later, favorites or archives.
- There is a special treatment for Twitter sites that automatically saves the requested tweet timeline, recording whether it has been viewed or not, and in huntly you can even revisit these tweets in a more convenient way.
- You can search by title, content, type, favorite method, and other dimensions.
- Connect to other services, currently GitHub is supported, so it's also a Github stars management tool.
- In the future, it may support connections to services like Pocket, Hypothesis, etc.                    

확장 프로그램 기본 정보

이름 Huntly Huntly
ID cphlcmmpbdkadofgcedjgfblmiklbokm
공식 URL https://chromewebstore.google.com/detail/huntly/cphlcmmpbdkadofgcedjgfblmiklbokm
설명 Huntly - Automatic saving browsed contents
파일 크기 206 KB
설치 횟수 985
현재 버전 0.3.1
최근 업데이트 2023-05-08
출시 날짜 2023-03-30
평점 5.00/5 총 3 개의 평점
개발자 lcomplete
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/lcomplete/huntly
개인정보 보호 정책 페이지 URL https://codelc.com/privacy
지원되는 언어 zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Huntly",
    "description": "Huntly - Automatic saving browsed contents",
    "version": "0.3.1",
    "options_ui": {
        "page": "options.html"
    },
    "icons": {
        "16": "favicon-16x16.png",
        "32": "favicon-32x32.png",
        "128": "favicon-128x128.png"
    },
    "action": {
        "default_icon": "favicon-32x32.png",
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "\/js\/tweet_interceptor.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/vendor.js",
                "js\/content_script.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/web_clipper.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "host_permissions": [
        ""
    ]
}