BitLy

Shorten links quick and easy

BitLyคืออะไร?

BitLy เป็นส่วนขยายของ Chrome ที่พัฒนาโดย matzondervan และคุณลักษณะหลักของมันคือ "Shorten links quick and easy"

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

screenshot

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

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

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

                        Updated to use bitly api V4
And the api key is now synced by your google account

* Make right-click on the link to shorten contents of a "href" attribute
* Make right-click on the selected text to treat it as link and shorten it
* To shorten current tab's URL click extension's button located on the right from address bar

Short URL will be automatically copied to the clipboard.

Code can be found on Github: https://github.com/Matthijz98/Url-shortener-chome-extension                    

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

ชื่อ BitLy BitLy
ID odilpbnahibaonlfnciocdfdlilfigco
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/bitly/odilpbnahibaonlfnciocdfdlilfigco
คำอธิบาย Shorten links quick and easy
ขนาดไฟล์ 13.11 KB
จำนวนการติดตั้ง 9,501
เวอร์ชันปัจจุบัน 0.1.0
อัปเดตครั้งล่าสุด 2023-07-14
วันที่เผยแพร่ 2017-04-16
คะแนน 4.38/5 รวมทั้งหมด 16 คะแนน
ผู้พัฒนา matzondervan
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/Matthijz98/Url-shortener-chome-extension
URL หน้าช่วยเหลือ https://github.com/Matthijz98/Url-shortener-chome-extension
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "BitLy",
    "version": "0.1.0",
    "description": "Shorten links quick and easy",
    "background": {
        "service_worker": "background.js"
    },
    "options_page": "options.html",
    "icons": {
        "16": "icons\/bitly_16.png",
        "32": "icons\/bitly_32.png",
        "48": "icons\/bitly_32.png",
        "128": "icons\/bitly_32.png"
    },
    "permissions": [
        "tabs",
        "contextMenus",
        "storage",
        "scripting"
    ],
    "action": {
        "default_icon": "icons\/bitly_16.png",
        "default_popup": "popup.html",
        "default_title": "Shorten links quick and easy"
    },
    "host_permissions": [
        "*:\/\/*\/*"
    ]
}