Similar Pages

Allows you to browse related pages.

Similar Pages là gì?

Similar Pages là một tiện ích mở rộng Chrome được phát triển bởi zamfofex, và tính năng chính của nó là "Allows you to browse related pages.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Similar Pages

Tải xuống các tệp mở rộng Similar Pages dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        This extension gives you the ability to see webpages related to the one you are currently browsing.

Whether you are looking at the documentation for your next programming project, trying to find your next favorite chocolate cake recipe, or even trying to research information for a school project, this extension can help you. By using Google Search technology, webpages from all throughout the Web are searched, and the relevant one that share a similar content to the one you are currently visiting are presented to you.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Similar Pages Similar Pages
ID lpedgppinmnpgdblfmjdppaeeldcpnil
URL Chính Thức https://chromewebstore.google.com/detail/similar-pages/lpedgppinmnpgdblfmjdppaeeldcpnil
Mô tả Allows you to browse related pages.
Kích Thước Tệp 12.58 KB
Số Lần Cài Đặt 1,111
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2019-04-09
Ngày Phát Hành 2019-04-05
Nhà Phát Triển zamfofex
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Similar Pages",
    "description": "Allows you to browse related pages.",
    "version": "1.1",
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage",
        "tabs"
    ],
    "browser_action": {
        "default_title": "Show Similar"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "background": {
        "scripts": [
            "default-options.js",
            "background.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "main.html"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "always-injected.css"
            ],
            "js": [
                "always-injected.js"
            ],
            "run_at": "document_start"
        }
    ],
    "incognito": "split",
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    }
}