Link Tweak

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

什么是Link Tweak?

Link Tweak是由https://webos-goodies.jp开发的Chrome扩展程序,该扩展的主要功能是“Rewrite link url (href attribute of A tag) with flexible rules.”。

扩展截图

screenshot

下载Link Tweak扩展crx文件

下载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"
            ]
        }
    ]
}