Preview - Sneak peak at links
ALT+Click links for a popup preview
Was ist Preview - Sneak peak at links?
Preview - Sneak peak at links ist eine Chrome-Erweiterung, die von benamara.otniel entwickelt wurde, und ihr Hauptmerkmal ist "ALT+Click links for a popup preview".
Erweiterungsscreenshots
Preview - Sneak peak at links-Erweiterungs-CRX-Datei herunterladen
Laden Sie Preview - Sneak peak at links-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
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.
Grundlegende Informationen zur Erweiterung
Name | Preview - Sneak peak at links |
ID | eogpejkjgbbhikkebmpbcdglbnjllfai |
Offizielle URL | https://chromewebstore.google.com/detail/preview-sneak-peak-at-lin/eogpejkjgbbhikkebmpbcdglbnjllfai |
Beschreibung | ALT+Click links for a popup preview |
Dateigröße | 103 KB |
Installationsanzahl | 1,004 |
Aktuelle Version | 0.0.2 |
Letztes Update | 2017-05-05 |
Veröffentlichungsdatum | 2017-05-04 |
Bewertung | 3.41/5 Insgesamt 22 Bewertungen |
Entwickler | benamara.otniel |
Zahlungsart | free |
Erweiterungswebsite | https://www.preview.guru |
Unterstützte Sprachen | 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" ] } ] } |