SnappyLink

SnappyLink allows you to preview information from pages without clicking

SnappyLinkคืออะไร?

SnappyLink เป็นส่วนขยายของ Chrome ที่พัฒนาโดย microwavesam และคุณลักษณะหลักของมันคือ "SnappyLink allows you to preview information from pages without clicking"

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

screenshot
screenshot
screenshot

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

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

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

                        http://snappylink.co/

Version 1.0.1: Changed some design
Version 1.0: (Beta version) Support for nearly all websites (bugs on some specific portions of sites) (update is planned)

Users who browse through Reddit, Google, Wikipedia, news articles, Bing, and YouTube want information quickly and easily. With the SnappyLink Chrome extension, users may preview every article, Google link, YouTube video, and Reddit post by hovering their mouse over the link. 

The Chrome extension pops a mini browser within the space that displays a preview of the link, so that users can see whether the information is useful to them or not. Users don't want to waste time clicking links to read content from every page while going back and forth, back and forth. Instead, they want speed and efficiency to see the content that they need to find. 

The target market are users of all ages. Every user wants to see his or her information as fast as possible especially the growing demographic of high school and college students who own personal laptops. We exploit the abundant users of data connecting websites like Google, Wikipedia, and YouTube, and provide a Chrome extension that eases and speeds the processing of information on the web.                    

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

ชื่อ SnappyLink SnappyLink
ID oohhmiogbdpfgllgeagjhljekmeojmnf
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/snappylink/oohhmiogbdpfgllgeagjhljekmeojmnf
คำอธิบาย SnappyLink allows you to preview information from pages without clicking
ขนาดไฟล์ 78.06 KB
จำนวนการติดตั้ง 417
เวอร์ชันปัจจุบัน 1.0.1
อัปเดตครั้งล่าสุด 2014-02-13
วันที่เผยแพร่ 2014-02-13
คะแนน 4.16/5 รวมทั้งหมด 19 คะแนน
ผู้พัฒนา microwavesam
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://www.snappylink.co/
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SnappyLink",
    "version": "1.0.1",
    "description": "SnappyLink allows you to preview information from pages without clicking",
    "manifest_version": 2,
    "icons": {
        "16": "img\/logo1.png",
        "32": "img\/logo1.png",
        "48": "img\/logo1.png",
        "128": "img\/logo1.png"
    },
    "default_locale": "en",
    "minimum_chrome_version": "18",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "options_page": "html\/options.html",
    "browser_action": {
        "default_icon": "img\/logo1.png",
        "default_popup": "html\/popup.html",
        "default_title": "SnappyLink"
    },
    "permissions": [
        "*:\/\/*\/*",
        "notifications",
        "unlimitedStorage"
    ],
    "optional_permissions": [
        "history"
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "web_accessible_resources": [
        "lib\/gumby.min.js",
        "lib\/jquery-2.1.0.min.js",
        "lib\/jquery.mobile.custom.min.js",
        "lib\/modernizr-2.7.1.min.js",
        "js\/options.js"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "lib\/jquery-2.1.0.min.js",
                "js\/preview.js"
            ],
            "css": [
                "css\/style.css"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ]
}