知乎安卓平板端优化 (for Yandex)

用于安卓平板Yandex浏览器,对知乎主要页面强制启用PC版,并进行横屏触屏优化

Wat is 知乎安卓平板端优化 (for Yandex)?

知乎安卓平板端优化 (for Yandex) is een Chrome-extensie ontwikkeld door FallingStar, en de belangrijkste functie is "用于安卓平板Yandex浏览器,对知乎主要页面强制启用PC版,并进行横屏触屏优化".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie 知乎安卓平板端优化 (for Yandex)

Download 知乎安卓平板端优化 (for Yandex)-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        注:本插件是在安卓平板上使用的,专用于Yandex浏览器,因为只有该安卓浏览器支持谷歌插件。
知乎的APP是无法横屏使用的,这使得用安卓平板横屏使用时十分不便(比如用保护套架在桌子上)。而知乎的移动端网页的访问体验又十分糟糕,各种限制和“app内打开”按钮。虽然可以强制请求PC端页面,但每次都要手动打开,而且PC页面没有针对平板做操作优化,使用有些不便。本插件就是解决这个问题的。
本插件大体上做两件事情:
1. 自动强制使用PC端页面,不需要手动选择浏览器自带的PC模式;
2. 优化触屏操作,比如把顶部栏挪到左边减少屏幕占用,缩减页面宽度使页面无法左右滑动等。
目前生效页面有知乎首页、回答页、个人首页、搜索页、话题页和专栏页等,其它页面没有优化必要

PS:实际上本插件在竖屏模式下也能用,但不保证效果。竖屏时建议还是用知乎官方app吧。                    

Basisinformatie over de Extensie

Naam 知乎安卓平板端优化 (for Yandex) 知乎安卓平板端优化 (for Yandex)
ID felgfbgneplangkgkcdplofccdicjaeb
Officiële URL https://chromewebstore.google.com/detail/%E7%9F%A5%E4%B9%8E%E5%AE%89%E5%8D%93%E5%B9%B3%E6%9D%BF%E7%AB%AF%E4%BC%98%E5%8C%96-for-yandex/felgfbgneplangkgkcdplofccdicjaeb
Beschrijving 用于安卓平板Yandex浏览器,对知乎主要页面强制启用PC版,并进行横屏触屏优化
Bestandsgrootte 54.47 KB
Aantal Installaties 59
Huidige Versie 1.1
Laatst Bijgewerkt 2018-07-05
Publicatiedatum 2018-07-05
Beoordeling 5.00/5 Totaal 5 Beoordelingen
Ontwikkelaar FallingStar
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/Juqingdi/Zhuhu-tablet-optimizer
Ondersteunde Talen zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "\u77e5\u4e4e\u5b89\u5353\u5e73\u677f\u7aef\u4f18\u5316 (for Yandex)",
    "description": "\u7528\u4e8e\u5b89\u5353\u5e73\u677fYandex\u6d4f\u89c8\u5668\uff0c\u5bf9\u77e5\u4e4e\u4e3b\u8981\u9875\u9762\u5f3a\u5236\u542f\u7528PC\u7248\uff0c\u5e76\u8fdb\u884c\u6a2a\u5c4f\u89e6\u5c4f\u4f18\u5316",
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "*:\/\/*.zhihu.com\/",
        "tabs",
        "storage"
    ],
    "version": "1.1",
    "background": {
        "page": "background.html"
    },
    "page_action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "js\/pretreat.js"
            ],
            "matches": [
                "*:\/\/www.zhihu.com\/",
                "*:\/\/www.zhihu.com\/question\/*",
                "*:\/\/www.zhihu.com\/search*",
                "*:\/\/www.zhihu.com\/people\/*",
                "*:\/\/www.zhihu.com\/topic\/*",
                "*:\/\/zhuanlan.zhihu.com\/*"
            ],
            "exclude_matches": [
                "*:\/\/www.zhihu.com\/topic",
                "*:\/\/zhuanlan.zhihu.com\/"
            ],
            "run_at": "document_start"
        },
        {
            "js": [
                "js\/jquery.min.js",
                "js\/common.js",
                "js\/Topstory.js"
            ],
            "matches": [
                "*:\/\/www.zhihu.com\/"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "js\/jquery.min.js",
                "js\/common.js",
                "js\/QuestionPage.js"
            ],
            "matches": [
                "*:\/\/www.zhihu.com\/question\/*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "js\/jquery.min.js",
                "js\/common.js",
                "js\/Search.js"
            ],
            "matches": [
                "*:\/\/www.zhihu.com\/search*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "js\/jquery.min.js",
                "js\/common.js",
                "js\/Profile.js"
            ],
            "matches": [
                "*:\/\/www.zhihu.com\/people\/*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "js\/jquery.min.js",
                "js\/common.js",
                "js\/Topic.js"
            ],
            "matches": [
                "*:\/\/www.zhihu.com\/topic\/*"
            ],
            "exclude_matches": [
                "*:\/\/www.zhihu.com\/topic"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "js\/jquery.min.js",
                "js\/zhuanlan.js"
            ],
            "matches": [
                "*:\/\/zhuanlan.zhihu.com\/*"
            ],
            "exclude_matches": [
                "*:\/\/zhuanlan.zhihu.com\/"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "web_accessible_resources": [
        "zhihutablet.css"
    ]
}