Link Tweak

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

Apa itu Link Tweak?

Link Tweak adalah ekstensi Chrome yang dikembangkan oleh https://webos-goodies.jp, dan fitur utamanya adalah "Rewrite link url (href attribute of A tag) with flexible rules.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Link Tweak

Unduh file ekstensi Link Tweak dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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/                    

Informasi Dasar Ekstensi

Nama Link Tweak Link Tweak
ID dmdhdobhaekkogecolgjhnnnhnngicck
URL Resmi https://chromewebstore.google.com/detail/link-tweak/dmdhdobhaekkogecolgjhnnnhnngicck
Deskripsi Rewrite link url (href attribute of A tag) with flexible rules.
Ukuran File 54.97 KB
Jumlah Instalasi 530
Versi Saat Ini 1.1.2
Terakhir Diperbarui 2012-07-05
Tanggal Publikasi 2012-07-04
Penilaian 3.20/5 Total 5 Penilaian
Pengembang https://webos-goodies.jp
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi http://code.google.com/p/linktweak/
URL Halaman Bantuan http://code.google.com/p/linktweak/wiki/Support
Bahasa yang Didukung 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"
            ]
        }
    ]
}