SearchDateLen: 검색 기간 확장

구글, 네이버, 다음 PC 검색 페이지의 검색 기간을 더 세분화시켜줍니다. Get finer control over search date range.

SearchDateLen: 검색 기간 확장 là gì?

SearchDateLen: 검색 기간 확장 là một tiện ích mở rộng Chrome được phát triển bởi SD810, và tính năng chính của nó là "구글, 네이버, 다음 PC 검색 페이지의 검색 기간을 더 세분화시켜줍니다. Get finer control over search date range.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng SearchDateLen: 검색 기간 확장

Tải xuống các tệp mở rộng SearchDateLen: 검색 기간 확장 dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        네이버, 다음, 구글 검색시 1일, 1주, 1개월, 1년 뿐만 아니라 더 세분화된 기간 설정을 제공합니다. 사용자 정의도 됩니다.
3개월, 6개월, 9개월, 1년 반, 2년, 반기별, 분기별 프리셋이 제공되고 특정 기간 같은 더 많은 것을 추가할 수 있습니다.

Get more finer control (customizable) for date range, more than just 1 day, 1 week, 1 month and 1 year, in search pages on Naver, Daum and Google.
adds 3 months, 6 months, 9 months, 1 year and a half, 2 years, first half, second half, first quarter, second quarter, third quarter, fourth quarter via preset, and you can add more like specific date range.



Due to review process, The published version will not always be latest. Please check the version before using it. Your consideration is appreciated.
검수 과정 때문에 게시된 버전이 최신버전이 아닐 수도 있습니다. 사용전 버전을 반드시 확인해주세요. 이해해주셔서 감사합니다.

2019-02-23 0.3
-네이버에서 미래를 지정하면 잘못된 날짜라고 거부하기 때문에 미래가 계산된 경우 오늘 날짜를 넘지 않게 재계산하도록 변경되었습니다. (다음, 구글 포함)
-Fixed Naver blocks date which points future, so now recalculating it to today. (incl. Daum, Google)


2019-02-19 0.2
-최초 게시
-First release                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên SearchDateLen: 검색 기간 확장 SearchDateLen: 검색 기간 확장
ID clmmggmcaclhdaajggmedmaogoelfhpi
URL Chính Thức https://chromewebstore.google.com/detail/searchdatelen-%EA%B2%80%EC%83%89-%EA%B8%B0%EA%B0%84-%ED%99%95%EC%9E%A5/clmmggmcaclhdaajggmedmaogoelfhpi
Mô tả 구글, 네이버, 다음 PC 검색 페이지의 검색 기간을 더 세분화시켜줍니다. Get finer control over search date range.
Kích Thước Tệp 27.32 KB
Số Lần Cài Đặt 81
Phiên Bản Hiện Tại 0.3
Cập Nhật Lần Cuối 2019-02-28
Ngày Phát Hành 2019-02-22
Nhà Phát Triển SD810
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/SD810/SearchDateLen
Ngôn Ngữ Được Hỗ Trợ ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "SearchDateLen: \uac80\uc0c9 \uae30\uac04 \ud655\uc7a5",
    "description": "\uad6c\uae00, \ub124\uc774\ubc84, \ub2e4\uc74c PC \uac80\uc0c9 \ud398\uc774\uc9c0\uc758 \uac80\uc0c9 \uae30\uac04\uc744 \ub354 \uc138\ubd84\ud654\uc2dc\ucf1c\uc90d\ub2c8\ub2e4. Get finer control over search date range.",
    "version": "0.3",
    "icons": {
        "48": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/search.naver.com\/*",
                "https:\/\/search.naver.com\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "common.js",
                "utils.js",
                "storage.js",
                "inject_common.js",
                "naver.js"
            ]
        },
        {
            "matches": [
                "http:\/\/search.daum.net\/*",
                "https:\/\/search.daum.net\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "common.js",
                "utils.js",
                "storage.js",
                "inject_common.js",
                "daum.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "include_globs": [
                "*:\/\/*.google.*\/search*",
                "*:\/\/google.*\/search*"
            ],
            "run_at": "document_idle",
            "js": [
                "common.js",
                "utils.js",
                "storage.js",
                "inject_common.js",
                "google.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ]
}