Link Tweak
Rewrite link url (href attribute of A tag) with flexible rules.
Link Tweak là gì?
Link Tweak là một tiện ích mở rộng Chrome được phát triển bởi https://webos-goodies.jp, và tính năng chính của nó là "Rewrite link url (href attribute of A tag) with flexible rules.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Link Tweak
Tải xuống các tệp mở rộng Link Tweak dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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/
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Link Tweak |
ID | dmdhdobhaekkogecolgjhnnnhnngicck |
URL Chính Thức | https://chromewebstore.google.com/detail/link-tweak/dmdhdobhaekkogecolgjhnnnhnngicck |
Mô tả | Rewrite link url (href attribute of A tag) with flexible rules. |
Kích Thước Tệp | 54.97 KB |
Số Lần Cài Đặt | 530 |
Phiên Bản Hiện Tại | 1.1.2 |
Cập Nhật Lần Cuối | 2012-07-05 |
Ngày Phát Hành | 2012-07-04 |
Đánh Giá | 3.20/5 Tổng số 5 Đánh Giá |
Nhà Phát Triển | https://webos-goodies.jp |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://code.google.com/p/linktweak/ |
URL Trang Trợ Giúp | http://code.google.com/p/linktweak/wiki/Support |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |