Link Tweak

Rewrite link url (href attribute of A tag) with flexible rules.

Link Tweakคืออะไร?

Link Tweak เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://webos-goodies.jp และคุณลักษณะหลักของมันคือ "Rewrite link url (href attribute of A tag) with flexible rules."

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

screenshot

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

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

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

                        Link Tweak rewrites a link url you clicked. You can specify the rewrite rules with flexible regular expressions in the options page. Please open chrome://extensions and click this extension's "Options" link after installation.

Usage examples:
- Preview pdfs with Google Docs Viewer.
- Remove unnecessary parameters like "?src=rss".
- Add/Remove/Replace language parameter like "?hl=en".
- Use a secure connection (https).

Source code is available at http://code.google.com/p/linktweak/                    

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

ชื่อ Link Tweak Link Tweak
ID dmdhdobhaekkogecolgjhnnnhnngicck
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/link-tweak/dmdhdobhaekkogecolgjhnnnhnngicck
คำอธิบาย Rewrite link url (href attribute of A tag) with flexible rules.
ขนาดไฟล์ 54.97 KB
จำนวนการติดตั้ง 530
เวอร์ชันปัจจุบัน 1.1.2
อัปเดตครั้งล่าสุด 2012-07-05
วันที่เผยแพร่ 2012-07-04
คะแนน 3.20/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา https://webos-goodies.jp
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://code.google.com/p/linktweak/
URL หน้าช่วยเหลือ http://code.google.com/p/linktweak/wiki/Support
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Link Tweak",
    "version": "1.1.2",
    "description": "Rewrite link url (href attribute of A tag) with flexible rules.",
    "icons": {
        "128": "icon-128.png",
        "48": "icon-48.png"
    },
    "background": {
        "page": "index.html"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "Content.js"
            ]
        }
    ]
}