any-peek
peek any web page from the top icon
Vad är any-peek?
any-peek är en Chrome-tillägg utvecklad av rotagi37, och dess huvudfunktion är "peek any web page from the top icon".
Tilläggsskärmbilder
Ladda ner any-peek-förlängningens CRX-fil
Ladda ner any-peek-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
peek any web page from the top icon
Grundläggande Information om Tillägg
Namn | ![]() |
ID | oiejnoljaonlcfbccehcbkkhabhklipe |
Officiell webbadress | https://chrome.google.com/webstore/detail/oiejnoljaonlcfbccehcbkkhabhklipe |
Beskrivning | peek any web page from the top icon |
Filstorlek | 159 KB |
Antal Installationer | 10 |
Aktuell Version | 2.0.5.8 |
Senast Uppdaterad | 2019-10-04 |
Publiceringsdatum | 2019-10-04 |
Utvecklare | rotagi37 |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" } ] } |