v2ex plus

优雅便捷的 V2EX 扩展

Was ist v2ex plus?

v2ex plus ist eine Chrome-Erweiterung, die von sciooga entwickelt wurde, und ihr Hauptmerkmal ist "优雅便捷的 V2EX 扩展".

Erweiterungsscreenshots

screenshot
screenshot

v2ex plus-Erweiterungs-CRX-Datei herunterladen

Laden Sie v2ex plus-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        V2EX Plus 2.0

功能简介:

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



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

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

Grundlegende Informationen zur Erweiterung

Name v2ex plus v2ex plus
ID daeclijmnojoemooblcbfeeceopnkolo
Offizielle URL https://chromewebstore.google.com/detail/v2ex-plus/daeclijmnojoemooblcbfeeceopnkolo
Beschreibung 优雅便捷的 V2EX 扩展
Dateigröße 61.1 KB
Installationsanzahl 8,345
Aktuelle Version 2.1.1
Letztes Update 2023-06-04
Veröffentlichungsdatum 2020-04-26
Bewertung 4.37/5 Insgesamt 101 Bewertungen
Entwickler sciooga
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
        }
    }
}