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 |
| 官方網址 | 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"
]
}
]
} | |