param appender
appends a configurable parameter to the url on url change
ما هو param appender؟
param appender هو إضافة Chrome تم تطويرها بواسطة stupid cat، والميزة الرئيسية لها هي "appends a configurable parameter to the url on url change".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة param appender
قم بتنزيل ملفات الامتداد param appender بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
appends a configurable parameter to the url on url change. the affected urls can be specified using a regex configuration. معلومات أساسية عن التمديد
| الاسم | |
| ID | dpodflepnifmnifholnajjffjmkolaae |
| عنوان URL الرسمي | https://chromewebstore.google.com/detail/param-appender/dpodflepnifmnifholnajjffjmkolaae |
| الوصف | appends a configurable parameter to the url on url change |
| حجم الملف | 44.63 KB |
| عدد التثبيتات | 77 |
| النسخة الحالية | 1.5 |
| آخر تحديث | 2020-08-31 |
| تاريخ النشر | 2020-03-08 |
| تقييم | 5.00/5 مجموع تقييمات 1 |
| المطور | stupid cat |
| البريد الإلكتروني | [email protected] |
| نوع الدفع | free |
| اللغات المدعومة | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "param appender",
"short_name": "pappender",
"version": "1.5",
"description": "appends a configurable parameter to the url on url change",
"manifest_version": 2,
"background": {
"scripts": [
"scripts\/background.js"
]
},
"permissions": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"storage",
"webRequest",
"webRequestBlocking"
],
"browser_action": {
"default_popup": "views\/popup.html",
"default_icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"options_page": "views\/options.html",
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
} | |