v2ex plus

优雅便捷的 V2EX 扩展

v2ex plus란 무엇입니까?

v2ex plus은(는) sciooga에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "优雅便捷的 V2EX 扩展"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        V2EX Plus 2.0

功能简介:

通知功能:更新提醒、未读消息
登录态判断:未登录 icon 提醒
半小时自动签到
主题列表预览及忽略功能
新窗口浏览主题
快捷键打开 V 站
快捷键查看未读消息
悬浮头像查看用户基础信息
评论悬浮@用户查看最近回复
高亮楼主回复
高亮回复感谢爱心
会话详情(关联对话)
回复指定用户添加楼层号
划词 base64 解码
评论发图 imgur 图床
表情
标记用户:高亮头像
淡化注册时间一个月内的用户
管理标记用户列表
管理屏蔽用户列表
管理忽略主题列表
折叠超长主题、回复
翻页自动跳过主题至回复
修复历史微博图片显示
集成 sov2ex



源码请见♥: github.com/sciooga/v2ex-plus

反馈问题请 Email: sciooga#gmail.com                    

확장 프로그램 기본 정보

이름 v2ex plus v2ex plus
ID daeclijmnojoemooblcbfeeceopnkolo
공식 URL https://chromewebstore.google.com/detail/v2ex-plus/daeclijmnojoemooblcbfeeceopnkolo
설명 优雅便捷的 V2EX 扩展
파일 크기 61.1 KB
설치 횟수 8,345
현재 버전 2.1.1
최근 업데이트 2023-06-04
출시 날짜 2020-04-26
평점 4.37/5 총 101 개의 평점
개발자 sciooga
이메일 [email protected]
결제 유형 free
지원되는 언어 zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "v2ex plus",
    "version": "2.1.1",
    "manifest_version": 3,
    "description": "\u4f18\u96c5\u4fbf\u6377\u7684 V2EX \u6269\u5c55",
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "alarms",
        "notifications",
        "storage",
        "declarativeNetRequest",
        "contextMenus"
    ],
    "host_permissions": [
        "*:\/\/*.v2ex.com\/*",
        "*:\/\/*.imgur.com\/*",
        "*:\/\/*.sinaimg.cn\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.v2ex.com\/*"
            ],
            "js": [
                ".\/inject\/base64decode.js",
                ".\/inject\/dbclickToTop.js",
                ".\/inject\/sov2ex.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.v2ex.com\/",
                "*:\/\/*.v2ex.com\/?tab=*",
                "*:\/\/*.v2ex.com\/go\/*",
                "*:\/\/*.v2ex.com\/my\/*",
                "*:\/\/*.v2ex.com\/recent*",
                "*:\/\/*.v2ex.com\/changes*"
            ],
            "css": [
                ".\/inject\/topicList\/index.css",
                ".\/inject\/userinfo\/index.css"
            ],
            "js": [
                ".\/inject\/topicList\/index.js",
                ".\/inject\/userinfo\/index.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.v2ex.com\/t\/*"
            ],
            "css": [
                ".\/inject\/topicDetail\/index.css",
                ".\/inject\/userinfo\/index.css"
            ],
            "js": [
                ".\/inject\/topicDetail\/index.js",
                ".\/inject\/userinfo\/index.js",
                ".\/spider\/index.js"
            ]
        }
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "weibo",
                "enabled": true,
                "path": "rules.json"
            }
        ]
    },
    "action": {
        "default_icon": "icon\/icon38.png"
    },
    "options_ui": {
        "page": "pages\/options\/index.html",
        "open_in_tab": true
    },
    "icons": {
        "16": "icon\/icon16.png",
        "48": "icon\/icon48.png",
        "128": "icon\/icon128.png"
    },
    "commands": {
        "newV2EX": {
            "description": "\u6253\u5f00 V2EX"
        },
        "newMsg": {
            "description": "\u67e5\u770b V2EX \u6d88\u606f"
        }
    }
}