Preview - Sneak peak at links

ALT+Click links for a popup preview

什麼是Preview - Sneak peak at links?

Preview - Sneak peak at links是由benamara.otniel開發的Chrome擴展程式,該擴展的主要功能是“ALT+Click links for a popup preview”。

擴展截圖

screenshot

下載Preview - Sneak peak at links擴展crx文件

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

擴展使用說明

                        Tired of context switches and too many tabs? Get a sneak peak preview of links.  Press the ALT key when clicking a link and a preview popup will appear! don't worry about those popups, they automatically disappear when the popup loses focus.                    

擴展基本資訊

名稱 Preview - Sneak peak at links Preview - Sneak peak at links
ID eogpejkjgbbhikkebmpbcdglbnjllfai
官方網址 https://chromewebstore.google.com/detail/preview-sneak-peak-at-lin/eogpejkjgbbhikkebmpbcdglbnjllfai
簡介 ALT+Click links for a popup preview
檔案大小 103 KB
安裝次數 1,004
目前版本 0.0.2
更新時間 2017-05-05
上架時間 2017-05-04
評分 3.41/5 共 22 次評分
開發者 benamara.otniel
付費類型 free
擴展官網 https://www.preview.guru
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Preview - Sneak peak at links",
    "version": "0.0.2",
    "manifest_version": 2,
    "description": "ALT+Click links for a popup preview",
    "icons": {
        "16": "icons\/icon128.png",
        "48": "icons\/icon128.png",
        "128": "icons\/icon128.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com\/analytics.js; object-src 'self'",
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "web_accessible_resources": [
        "static\/*"
    ],
    "permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*",
        "downloads"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "css": [
                "src\/inject\/inject.css"
            ],
            "all_frames": true,
            "match_about_blank": true
        },
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "all_frames": true,
            "js": [
                "js\/jquery-1.12.4.min.js",
                "src\/inject\/content.js"
            ]
        }
    ]
}