Archive Browser

This extension allows you to browse archived internet pages or create archived pages for sharing.

ما هو Archive Browser؟

Archive Browser هو إضافة Chrome تم تطويرها بواسطة Serve، والميزة الرئيسية لها هي "This extension allows you to browse archived internet pages or create archived pages for sharing.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Archive Browser

قم بتنزيل ملفات الامتداد Archive Browser بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                                            

معلومات أساسية عن التمديد

الاسم Archive Browser Archive Browser
ID jhlhpcflleceanlfjjpfiodnkilcecga
عنوان URL الرسمي https://chrome.google.com/webstore/detail/archive-browser/jhlhpcflleceanlfjjpfiodnkilcecga
الوصف This extension allows you to browse archived internet pages or create archived pages for sharing.
حجم الملف 275 KB
عدد التثبيتات 180
النسخة الحالية 1.1.2
آخر تحديث 2017-05-30
تاريخ النشر 2017-05-30
تقييم 1.00/5 مجموع تقييمات 1
المطور Serve
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "short_name": "__MSG_appShortName__",
    "description": "__MSG_appDescription__",
    "version": "1.1.2",
    "manifest_version": 2,
    "default_locale": "en",
    "icons": {
        "16": "images\/icon_16_enabled.png",
        "19": "images\/icon_19_enabled.png",
        "32": "images\/icon_32_enabled.png",
        "38": "images\/icon_38_enabled.png",
        "64": "images\/icon_64_enabled.png",
        "128": "images\/icon_128_enabled.png"
    },
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/icon_19_enabled.png",
            "38": "images\/icon_38_enabled.png"
        },
        "default_title": "__MSG_browserActionTitle__",
        "default_popup": "pages\/popup.html"
    },
    "options_page": "pages\/options.html",
    "options_ui": {
        "page": "pages\/options.html",
        "chrome_style": true,
        "open_in_tab": true
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "minimum_chrome_version": "10.0",
    "devtools_page": "pages\/devtools.html",
    "omnibox": {
        "keyword": "Cache Browser"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "styles\/contentscript.css"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "permissions": [
        "clipboardRead",
        "storage",
        "clipboardWrite",
        "commands",
        "contentSettings",
        "contextMenus",
        "debugger",
        "management",
        "identity",
        "notifications",
        "tabs",
        "activeTab",
        "webRequest",
        "webRequestBlocking",
        ""
    ]
}