Linkable

Provides a permalink to certain webpages.

Linkableคืออะไร?

Linkable เป็นส่วนขยายของ Chrome ที่พัฒนาโดย daleyjem และคุณลักษณะหลักของมันคือ "Provides a permalink to certain webpages."

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

screenshot

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

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

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

                        Parses HTML elements on a page with an id attribute. A hashed URL (i.e. "http://www.site.com/#section") can quickly be copied to the clipboard.                    

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

ชื่อ Linkable Linkable
ID ndnlgncfhnlimohdlfkgadmanpnmpbbe
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/linkable/ndnlgncfhnlimohdlfkgadmanpnmpbbe
คำอธิบาย Provides a permalink to certain webpages.
ขนาดไฟล์ 10.8 KB
จำนวนการติดตั้ง 330
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2016-06-02
วันที่เผยแพร่ 2016-06-02
ผู้พัฒนา daleyjem
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Linkable",
    "author": "Jeremy Daley",
    "version": "1.0",
    "description": "Provides a permalink to certain webpages.",
    "icons": {
        "128": "icon.png"
    },
    "browser_action": {
        "default_title": "Show\/hide linkable items",
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "main.js",
                "clipboard.js"
            ],
            "css": [
                "main.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "link.svg"
    ]
}