Invisible scrollbar

Re-realize scrollbar, simple design and floating display

Invisible scrollbar क्या है?

Invisible scrollbar KK YUAN द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Re-realize scrollbar, simple design and floating display"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Invisible scrollbar एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This is an extension to hide the scroll bar of the webpage. After hiding, the function will be realized in other ways:

Click on the far right side of the webpage to quickly scroll to the top or bottom.
Click on the leftmost page to quickly turn the page.
Double-click can also mark the current browsing position and automatically generate a directory. Click to reach the content area, or press Ctrl to switch.                    

एक्सटेंशन की मूल जानकारी

नाम Invisible scrollbar Invisible scrollbar
ID nphnhlhdlbonnekhjlmphinfnmekiifk
आधिकारिक URL https://chromewebstore.google.com/detail/invisible-scrollbar/nphnhlhdlbonnekhjlmphinfnmekiifk
विवरण Re-realize scrollbar, simple design and floating display
फ़ाइल का आकार 1.24 MB
स्थापना संख्या 3,000
वर्तमान संस्करण 1.4.3
अंतिम अपडेट 2023-11-20
प्रकाशन तिथि 2020-07-03
रेटिंग 4.49/5 कुल 41 रेटिंग्स
डेवलपर KK YUAN
ईमेल [email protected]
भुगतान के प्रकार free
गोपनीयता नीति पृष्ठ URL http://aa-zz.cn/apps/privacy_policy.html
समर्थित भाषाएँ en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_appName__",
    "default_locale": "en",
    "version": "1.4.3",
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "icons\/icon5_no_16.png",
        "48": "icons\/icon5_no_48.png",
        "128": "icons\/icon5_no.png"
    },
    "action": {
        "default_icon": {
            "19": "icons\/icon5_no_19.png",
            "38": "icons\/icon5_no_38.png"
        },
        "default_title": "__MSG_appName__",
        "default_popup": "pages\/popup.html"
    },
    "background": {
        "service_worker": "core\/background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "run_at": "document_start",
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "pages\/background.css"
            ],
            "js": [
                "pages\/jquery-min.js",
                "pages\/base64.js",
                "core\/content_script.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "img\/*.png",
                "pages\/reading_model.html",
                "pages\/scroll_bar.html"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "permissions": [
        "contextMenus",
        "storage",
        "unlimitedStorage",
        "notifications"
    ],
    "host_permissions": [
        "*:\/\/aa-zz.cn\/*"
    ],
    "optional_permissions": [
        "tabs"
    ]
}