Tamperwolf
Tampermonkey clone
ما هو Tamperwolf؟
Tamperwolf هو إضافة Chrome تم تطويرها بواسطة cristi.lupascu، والميزة الرئيسية لها هي "Tampermonkey clone".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Tamperwolf
قم بتنزيل ملفات الامتداد Tamperwolf بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
A simple extension that runs custom scripts on pages based on some simple regex rules.
معلومات أساسية عن التمديد
الاسم | Tamperwolf |
ID | agdbgmnajalcgckpbfghgkoglkecpfhm |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/tamperwolf/agdbgmnajalcgckpbfghgkoglkecpfhm |
الوصف | Tampermonkey clone |
حجم الملف | 216 KB |
عدد التثبيتات | 154 |
النسخة الحالية | 1.0.1 |
آخر تحديث | 2021-05-26 |
تاريخ النشر | 2017-05-09 |
تقييم | 5.00/5 مجموع تقييمات 1 |
المطور | cristi.lupascu |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/clupasq/tamperwolf |
عنوان صفحة المساعدة | https://github.com/clupasq/tamperwolf/issues |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Tamperwolf", "short_name": "Tamperwolf", "version": "1.0.1", "author": "Cristian Lupa\u0219cu", "homepage_url": "https:\/\/github.com\/clupasq\/tamperwolf", "description": "Tampermonkey clone", "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": [], "options_page": "options.html", "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "pageScript.js" ], "run_at": "document_end" } ], "permissions": [ " |