네이버 카페 필터링

네이버 카페 필터링

네이버 카페 필터링คืออะไร?

네이버 카페 필터링 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://a2tt.me และคุณลักษณะหลักของมันคือ "네이버 카페 필터링"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย 네이버 카페 필터링

ดาวน์โหลดไฟล์ส่วนขยาย 네이버 카페 필터링 ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        네이버 카페 PC 버전을 조금 더 편안하고 편리하게 만들어줍니다.

- 특정 글자를 포함한 글과 댓글을 보고싶지 않은 경우
- 보고싶지 않은 카페 회원이 있는 경우
- 특정 멤버 등급의 유저들을 일괄적으로 필터링 하고 싶은 경우
- 특정 글자를 강조하고 싶은 경우

위와 같은 상황에 유용하게 사용하실 수 있습니다.

사용 방법 등은 https://bit.ly/3tNVDgU 에서 확인 가능합니다.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ 네이버 카페 필터링 네이버 카페 필터링
ID dhiokelmbaindfbadlogacghbiahngha
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/%EB%84%A4%EC%9D%B4%EB%B2%84-%EC%B9%B4%ED%8E%98-%ED%95%84%ED%84%B0%EB%A7%81/dhiokelmbaindfbadlogacghbiahngha
คำอธิบาย 네이버 카페 필터링
ขนาดไฟล์ 826 KB
จำนวนการติดตั้ง 38,993
เวอร์ชันปัจจุบัน 5.1.1
อัปเดตครั้งล่าสุด 2022-07-30
วันที่เผยแพร่ 2020-05-13
คะแนน 4.56/5 รวมทั้งหมด 123 คะแนน
ผู้พัฒนา https://a2tt.me
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://a2tt.notion.site/33af5bf53aa44cb7834f4f9d93fe9e67
URL หน้าช่วยเหลือ https://a2tt.notion.site/33af5bf53aa44cb7834f4f9d93fe9e67
ภาษาที่รองรับ ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "\ub124\uc774\ubc84 \uce74\ud398 \ud544\ud130\ub9c1",
    "version": "5.1.1",
    "manifest_version": 3,
    "name": "\ub124\uc774\ubc84 \uce74\ud398 \ud544\ud130\ub9c1",
    "action": {
        "default_icon": "\/img\/on.png",
        "default_popup": "html\/popup.html"
    },
    "icons": {
        "16": "\/img\/icon_16.png",
        "48": "\/img\/icon_48.png",
        "128": "\/img\/icon_128.png"
    },
    "background": {
        "service_worker": "background.bundle.js",
        "type": "module"
    },
    "commands": {
        "COMMAND_TOGGLE": {
            "description": "on\/off"
        },
        "COMMAND_FILTER_THIS_WRITER": {
            "description": "\ud604\uc7ac \uae00 \uc791\uc131\uc790 \ud544\ud130\ub9c1"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/cafe.naver.com\/*",
                "https:\/\/cafe.naver.com\/*\/*",
                "https:\/\/cafe.naver.com\/ca-fe\/ArticleRead.nhn?*"
            ],
            "js": [
                "activateSW.bundle.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        },
        {
            "matches": [
                "https:\/\/cafe.naver.com\/ArticleList.nhn?*.boardtype=I*"
            ],
            "js": [
                "article_list_image.bundle.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        },
        {
            "matches": [
                "https:\/\/cafe.naver.com\/*List.nhn*"
            ],
            "exclude_matches": [
                "https:\/\/cafe.naver.com\/ArticleList.nhn?*.boardtype=I*",
                "https:\/\/cafe.naver.com\/CafeMemberNetworkArticleList.nhn*"
            ],
            "js": [
                "article_list.bundle.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "options_ui": {
        "open_in_tab": true,
        "page": "html\/options.html"
    },
    "permissions": [
        "webRequest",
        "contextMenus",
        "activeTab",
        "storage",
        "scripting",
        "notifications"
    ],
    "host_permissions": [
        "https:\/\/cafe.naver.com\/*",
        "https:\/\/apis.naver.com\/*"
    ],
    "content_security_policy": {
        "extension_pages": "default-src 'self'; style-src 'self' 'unsafe-inline'; connect-src http:\/\/localhost:* ws:\/\/localhost:*;"
    }
}