Survol
Survol saves you tabs and time by previewing every link you hover
Wat is Survol?
Survol is een Chrome-extensie ontwikkeld door https://survol.me, en de belangrijkste functie is "Survol saves you tabs and time by previewing every link you hover".
Extensie Screenshots
Download het CRX-bestand van de extensie Survol
Download Survol-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
This extension will save you time by letting you preview links you hover instead of opening new tabs.
Basisinformatie over de Extensie
Naam | Survol |
ID | fdnnmbmkgfdjclkgimonnimokhnndalk |
Officiële URL | https://chromewebstore.google.com/detail/survol/fdnnmbmkgfdjclkgimonnimokhnndalk |
Beschrijving | Survol saves you tabs and time by previewing every link you hover |
Bestandsgrootte | 544 KB |
Aantal Installaties | 3,418 |
Huidige Versie | 6.0.0 |
Laatst Bijgewerkt | 2020-10-18 |
Publicatiedatum | 2020-10-07 |
Beoordeling | 3.73/5 Totaal 11 Beoordelingen |
Ontwikkelaar | https://survol.me |
contact@survol.me | |
Betalingswijze | free |
Extensiewebsite | https://survol.me |
Help Pagina-URL | https://github.com/mdolr/survol/issues |
Ondersteunde Talen | id,de,en,fil,fr,nl,no,tr,da,es,it,lt,pl,pt-BR,ro,fi,sv,cs,ru,uk,iw,hi,gu,ta,te,kn-IN,th,zh-CN,zh-TW,ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "6.0.0", "name": "__MSG_extensionName__", "short_name": "__MSG_extensionShortName__", "description": "__MSG_extensionDescription__", "author": "Maxime DOLORES - mdolr", "default_locale": "en", "permissions": [ "https:\/\/*\/*", "http:\/\/*\/*", "file:\/\/\/*", "tabs", "activeTab", "storage", "unlimitedStorage" ], "icons": { "128": "\/images\/icon128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/\/*\/*" ], "js": [ "js\/templates\/wikipedia.js", "js\/templates\/base.js", "js\/templates\/reddit.js", "js\/templates\/twitter.js", "js\/templates\/youtube.js", "js\/templates\/stackexchange.js", "js\/templates\/soundcloud.js", "js\/core.js" ], "css": [ "css\/base.css", "css\/templates\/wikipedia.css", "css\/templates\/reddit.css", "css\/templates\/twitter.css", "css\/templates\/youtube.css", "css\/templates\/stackexchange.css", "css\/templates\/soundcloud.css" ], "run_at": "document_start" } ], "background": { "scripts": [ "js\/background\/auxiliary.js" ] }, "browser_action": { "default_title": "Survol", "default_popup": "html\/popup.html" }, "web_accessible_resources": [ "images\/upvote.png", "images\/comment.png", "images\/reddit.png" ] } |