any-peek
peek any web page from the top icon
什麼是any-peek?
any-peek是由rotagi37開發的Chrome擴展程式,該擴展的主要功能是“peek any web page from the top icon”。
擴展截圖
下載any-peek擴展crx文件
下載any-peek擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
peek any web page from the top icon
擴展基本資訊
名稱 | ![]() |
ID | oiejnoljaonlcfbccehcbkkhabhklipe |
官方網址 | https://chrome.google.com/webstore/detail/oiejnoljaonlcfbccehcbkkhabhklipe |
簡介 | peek any web page from the top icon |
檔案大小 | 159 KB |
安裝次數 | 10 |
目前版本 | 2.0.5.8 |
更新時間 | 2019-10-04 |
上架時間 | 2019-10-04 |
開發者 | rotagi37 |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "any-peek", "manifest_version": 2, "version": "2.0.5.8", "icons": { "16": "icon.png", "32": "icon.png", "48": "icon.png" }, "permissions": [ "history", "contextMenus", "clipboardWrite", "clipboardRead", "webRequest", "webRequestBlocking", "tabs", "https:\/\/*\/*", "http:\/\/*\/*" ], "options_page": "options.html", "background": { "scripts": [ "\/bg.js" ] }, "browser_action": { "default_icon": { "16": "icon.png", "32": "icon.png", "48": "icon.png" }, "default_title": "Peek Any page", "default_popup": "popup.html" }, "content_scripts": [ { "all_frames": true, "css": [], "js": [ "jquery-3.2.1.min.js", "cscript.js" ], "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "run_at": "document_end" } ] } |