Link Peek

Shows a summary of a link / URL

Link Peekคืออะไร?

Link Peek เป็นส่วนขยายของ Chrome ที่พัฒนาโดย dogan.engin.games และคุณลักษณะหลักของมันคือ "Shows a summary of a link / URL"

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

screenshot
screenshot
screenshot

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

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

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

                        This extension will revolutionize the way you surf the web!

Instead of clicking links on a website to check what is behind each and every one of them, use the Link Peek to get a summary of the page behind that link! This extension will improve your efficiency and help you go through the content of a website much quicker.

It is perfect for news sites, forums, shopping sites, corporate web pages and many more.

Please note that the extension blocks cross-domain pages to protect your security. In other words, only pages from the same website/domain will be shown.

Be ready to experience a new way of using your browser!

Please let me know if you need additional features. I am fully committed to maintain and improve the extension.

IMPORTANT: 
- The extension will be ready once the website is fully loaded. You can check the status of the extension from its icon as it will turn to green once ready. 
- To activate the extension press Ctrl and move your mouse over a link.
- You can change your settings by clicking on the extension icon. For ex, if you do not want to keep pressing Ctrl, you can update the behavior at the settings section.

ENJOY! 

Please send us an email if you want new features and we'd be more than happy to implement :)                    

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

ชื่อ Link Peek Link Peek
ID ogoenkiecpjnfccaclpikgfpoeddceci
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/link-peek/ogoenkiecpjnfccaclpikgfpoeddceci
คำอธิบาย Shows a summary of a link / URL
ขนาดไฟล์ 52.55 KB
จำนวนการติดตั้ง 57
เวอร์ชันปัจจุบัน 0.0.0.6
อัปเดตครั้งล่าสุด 2023-07-21
วันที่เผยแพร่ 2020-12-22
คะแนน 4.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา dogan.engin.games
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en,fr,tr,es
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Link Peek",
    "description": "Shows a summary of a link \/ URL",
    "version": "0.0.0.6",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "url_script.js",
                "images\/loading.png",
                "images\/cancel.png",
                "images\/icon-green.png",
                "images\/icon-red.png"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "24": "images\/icon24.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png",
            "64": "images\/icon64.png",
            "128": "images\/icon128.png"
        },
        "default_popup": "options.html",
        "default_title": "Options"
    },
    "icons": {
        "16": "images\/icon16.png",
        "24": "images\/icon24.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "64": "images\/icon64.png",
        "128": "images\/icon128.png"
    },
    "options_page": "options.html",
    "default_locale": "en"
}