Survol
Survol saves you tabs and time by previewing every link you hover
What is Survol?
Survol is a Chrome extension developed by https://survol.me, and its main feature is "Survol saves you tabs and time by previewing every link you hover".
Extension Screenshots
Download Survol Extension CRX File
Download Survol 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
This extension will save you time by letting you preview links you hover instead of opening new tabs.
Extension Basic Information
Name | Survol |
ID | fdnnmbmkgfdjclkgimonnimokhnndalk |
Official URL | https://chromewebstore.google.com/detail/survol/fdnnmbmkgfdjclkgimonnimokhnndalk |
Description | Survol saves you tabs and time by previewing every link you hover |
File Size | 544 KB |
Installation Count | 3,418 |
Current Version | 6.0.0 |
Last Updated | 2020-10-18 |
Publish Date | 2020-10-07 |
Rating | 3.73/5 Total 11 Ratings |
Developer | https://survol.me |
[email protected] | |
Payment Type | free |
Extension Website | https://survol.me |
Help Page URL | https://github.com/mdolr/survol/issues |
Supported Languages | 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" ] } |