PageExpand
Popup image. Batch download. Extend BBS. etc...
ما هو PageExpand؟
PageExpand هو إضافة Chrome تم تطويرها بواسطة https://hakuhin.jp، والميزة الرئيسية لها هي "Popup image. Batch download. Extend BBS. etc...".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة PageExpand
قم بتنزيل ملفات الامتداد PageExpand بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
                        ----- Main function -----
⚙️Popup image.
⚙️Batch download tool.
⚙️Extend anonymous BBS. (5ch, 2chan)
----- Sub function (Setting required) -----
⚙️Expand thumbnail image.
⚙️Expand MediaPlayer.
⚙️Expand shortened URL.
⚙️Replace text to hyperlink.
⚙️Override Referer and UserAgent. (abolish in MV3)
⚙️Customize by JavaScript. (abolish in MV3)
----- About PageExpand -----
⚙️Enrich legacy text-based sites.
----- Specification details -----
⚙️https://hakuhin.jp/browser_extension/page_expand.html                     معلومات أساسية عن التمديد
| الاسم |  | 
| ID | bjnobgdfhefpilajplncgjjeopakpepc | 
| عنوان URL الرسمي | https://chromewebstore.google.com/detail/pageexpand/bjnobgdfhefpilajplncgjjeopakpepc | 
| الوصف | Popup image. Batch download. Extend BBS. etc... | 
| حجم الملف | 412 KB | 
| عدد التثبيتات | 14,282 | 
| النسخة الحالية | 1.6.1 | 
| آخر تحديث | 2023-11-19 | 
| تاريخ النشر | 2019-11-19 | 
| تقييم | 4.20/5 مجموع تقييمات 89 | 
| المطور | https://hakuhin.jp | 
| البريد الإلكتروني | [email protected] | 
| نوع الدفع | free | 
| موقع الإضافة | https://hakuhin.jp/browser_extension/page_expand.html | 
| اللغات المدعومة | en,ja | 
| manifest.json | |
| {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "default_locale": "en",
    "name": "__MSG_extension_name__",
    "version": "1.6.1",
    "manifest_version": 2,
    "description": "__MSG_extension_description__",
    "author": "hakuhin",
    "icons": {
        "16": "icon16.png",
        "19": "icon19.png",
        "32": "icon32.png",
        "38": "icon38.png",
        "48": "icon48.png",
        "64": "icon64.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "PageExpand.js",
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "PageExpand.js",
                "content_scripts.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "match_about_blank": true,
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_icon": {
            "16": "icon16.png",
            "18": "icon18.png",
            "19": "icon19.png",
            "32": "icon32.png",
            "38": "icon38.png",
            "48": "icon48.png",
            "64": "icon64.png",
            "128": "icon128.png"
        },
        "default_title": "__MSG_extension_name__",
        "default_popup": "popup.html"
    },
    "sidebar_action": {
        "default_icon": {
            "16": "icon16.png",
            "19": "icon19.png",
            "32": "icon32.png",
            "38": "icon38.png",
            "48": "icon48.png",
            "64": "icon64.png",
            "128": "icon128.png"
        },
        "default_title": "__MSG_extension_name__",
        "default_panel": "sidebar.html"
    },
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "permissions": [
        "tabs",
        "webRequest",
        "webRequestBlocking",
        "contextMenus",
        "storage",
        "clipboardWrite",
        "downloads",
        "downloads.shelf",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "applications": {
        "gecko": {
            "id": "[email protected]"
        }
    }
} | |