any-peek
peek any web page from the top icon
What is any-peek?
any-peek is a Chrome extension developed by rotagi37, and its main feature is "peek any web page from the top icon".
Extension Screenshots
Download any-peek Extension CRX File
Download any-peek extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
peek any web page from the top icon
Extension Basic Information
Name | ![]() |
ID | oiejnoljaonlcfbccehcbkkhabhklipe |
Official URL | https://chrome.google.com/webstore/detail/oiejnoljaonlcfbccehcbkkhabhklipe |
Description | peek any web page from the top icon |
File Size | 159 KB |
Installation Count | 10 |
Current Version | 2.0.5.8 |
Last Updated | 2019-10-04 |
Publish Date | 2019-10-04 |
Developer | rotagi37 |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } ] } |