any-peek
peek any web page from the top icon
Was ist any-peek?
any-peek ist eine Chrome-Erweiterung, die von rotagi37 entwickelt wurde, und ihr Hauptmerkmal ist "peek any web page from the top icon".
Erweiterungsscreenshots
any-peek-Erweiterungs-CRX-Datei herunterladen
Laden Sie any-peek-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
peek any web page from the top icon Grundlegende Informationen zur Erweiterung
| Name | |
| ID | oiejnoljaonlcfbccehcbkkhabhklipe |
| Offizielle URL | https://chrome.google.com/webstore/detail/oiejnoljaonlcfbccehcbkkhabhklipe |
| Beschreibung | peek any web page from the top icon |
| Dateigröße | 159 KB |
| Installationsanzahl | 10 |
| Aktuelle Version | 2.0.5.8 |
| Letztes Update | 2019-10-04 |
| Veröffentlichungsdatum | 2019-10-04 |
| Entwickler | rotagi37 |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | 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"
}
]
} | |