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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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/ |
| عنوان صفحة المساعدة | 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"
]
}
]
} | |