Similar Pages

Allows you to browse related pages.

什麼是Similar Pages?

Similar Pages是由zamfofex開發的Chrome擴展程式,該擴展的主要功能是“Allows you to browse related pages.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Similar Pages擴展crx文件

下載Similar Pages擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Similar Pages Similar Pages
ID lpedgppinmnpgdblfmjdppaeeldcpnil
官方網址 https://chromewebstore.google.com/detail/similar-pages/lpedgppinmnpgdblfmjdppaeeldcpnil
簡介 Allows you to browse related pages.
檔案大小 12.58 KB
安裝次數 1,111
目前版本 1.1
更新時間 2019-04-09
上架時間 2019-04-05
開發者 zamfofex
電子郵箱 [email protected]
付費類型 free
支援的語言 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]"
        }
    }
}