Survol

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

Survolคืออะไร?

Survol เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://survol.me และคุณลักษณะหลักของมันคือ "Survol saves you tabs and time by previewing every link you hover"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Survol

ดาวน์โหลดไฟล์ส่วนขยาย Survol ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Survol Survol
ID fdnnmbmkgfdjclkgimonnimokhnndalk
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/survol/fdnnmbmkgfdjclkgimonnimokhnndalk
คำอธิบาย Survol saves you tabs and time by previewing every link you hover
ขนาดไฟล์ 544 KB
จำนวนการติดตั้ง 3,418
เวอร์ชันปัจจุบัน 6.0.0
อัปเดตครั้งล่าสุด 2020-10-18
วันที่เผยแพร่ 2020-10-07
คะแนน 3.73/5 รวมทั้งหมด 11 คะแนน
ผู้พัฒนา https://survol.me
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://survol.me
URL หน้าช่วยเหลือ https://github.com/mdolr/survol/issues
ภาษาที่รองรับ 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"
    ]
}