Link Tweak

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

What is Link Tweak?

Link Tweak is a Chrome extension developed by https://webos-goodies.jp, and its main feature is "Rewrite link url (href attribute of A tag) with flexible rules.".

Extension Screenshots

screenshot

Download Link Tweak Extension CRX File

Download Link Tweak extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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/                    

Extension Basic Information

Name Link Tweak Link Tweak
ID dmdhdobhaekkogecolgjhnnnhnngicck
Official URL https://chromewebstore.google.com/detail/link-tweak/dmdhdobhaekkogecolgjhnnnhnngicck
Description Rewrite link url (href attribute of A tag) with flexible rules.
File Size 54.97 KB
Installation Count 530
Current Version 1.1.2
Last Updated 2012-07-05
Publish Date 2012-07-04
Rating 3.20/5 Total 5 Ratings
Developer https://webos-goodies.jp
Email [email protected]
Payment Type free
Extension Website http://code.google.com/p/linktweak/
Help Page URL http://code.google.com/p/linktweak/wiki/Support
Supported Languages 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"
            ]
        }
    ]
}