Shortlink Finder

Displays an icon if the current page has an official shortlink and makes it easy to copy!

Shortlink Finderคืออะไร?

Shortlink Finder เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://joe.gl และคุณลักษณะหลักของมันคือ "Displays an icon if the current page has an official shortlink and makes it easy to copy!"

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

screenshot

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

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

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

                        Displays an icon if the current page has an official short link/URL and makes it easy to copy!                    

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

ชื่อ Shortlink Finder Shortlink Finder
ID gjbgaoobcdohajkkcanaemikngkaojbk
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/shortlink-finder/gjbgaoobcdohajkkcanaemikngkaojbk
คำอธิบาย Displays an icon if the current page has an official shortlink and makes it easy to copy!
ขนาดไฟล์ 42.51 KB
จำนวนการติดตั้ง 23
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2014-07-11
วันที่เผยแพร่ 2014-07-11
คะแนน 2.33/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา http://joe.gl
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/glombek/ShortlinkExtension
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Shortlink Finder",
    "version": "1.1",
    "description": "Displays an icon if the current page has an official shortlink and makes it easy to copy!",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.min.js",
                "content_script.js"
            ]
        }
    ],
    "page_action": {
        "default_icon": "icon-19.png",
        "default_title": "Get Shortlink",
        "default_popup": "popup.html"
    },
    "permissions": [
        "declarativeContent",
        "activeTab",
        "clipboardWrite"
    ],
    "icons": {
        "19": "icon-19.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "manifest_version": 2
}