Survol

Survol saves you tabs and time by previewing every link you hover

Hvad er Survol?

Survol er en Chrome-udvidelse udviklet af https://survol.me, og dens hovedfunktion er "Survol saves you tabs and time by previewing every link you hover".

Udvidelsesskærmbilleder

screenshot

Download Survol-udvidelses-CRX-fil

Download Survol-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        This extension will save you time by letting you preview links you hover instead of opening new tabs.                    

Grundlæggende oplysninger om udvidelsen

Navn Survol Survol
ID fdnnmbmkgfdjclkgimonnimokhnndalk
Officiel URL https://chromewebstore.google.com/detail/survol/fdnnmbmkgfdjclkgimonnimokhnndalk
Beskrivelse Survol saves you tabs and time by previewing every link you hover
Filstørrelse 544 KB
Antal Installationer 3,418
Nuværende Version 6.0.0
Senest Opdateret 2020-10-18
Udgivelsesdato 2020-10-07
Bedømmelse 3.73/5 Samlet 11 Bedømmelser
Udvikler https://survol.me
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://survol.me
Hjælpeside-URL https://github.com/mdolr/survol/issues
Understøttede Sprog 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"
    ]
}