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.」です。
拡張機能のスクリーンショット
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/ 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
]
}
]
} | |