Link Tweak
Rewrite link url (href attribute of A tag) with flexible rules.
Что такое Link Tweak?
Link Tweak - это расширение Chrome, разработанное https://webos-goodies.jp, и его основная функция - "Rewrite link url (href attribute of A tag) with flexible rules.".
Снимки экрана расширения
Скачать файл CRX расширения Link Tweak
Скачайте файлы расширений 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 |
| Электронная почта | [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"
]
}
]
} | |