Run Javascript
Run custom Javascript, each time you visit a website
ما هو Run Javascript؟
Run Javascript هو إضافة Chrome تم تطويرها بواسطة ao.ms، والميزة الرئيسية لها هي "Run custom Javascript, each time you visit a website".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Run Javascript
قم بتنزيل ملفات الامتداد Run Javascript بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Run custom Javascript, each time you visit a website. This extension is particularly useful to web developers and people who like to tamper with websites they frequent by injecting additional javascript to manipulate the DOM. Add in any javascript you like and it will automatically be executed everytime you visit the website in the future. jQuery 3.3.1 is pre-loaded, so you can use all the $ magic immediately!
معلومات أساسية عن التمديد
الاسم | Run Javascript |
ID | lmilalhkkdhfieeienjbiicclobibjao |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/run-javascript/lmilalhkkdhfieeienjbiicclobibjao |
الوصف | Run custom Javascript, each time you visit a website |
حجم الملف | 2.18 MB |
عدد التثبيتات | 35,056 |
النسخة الحالية | 1.11 |
آخر تحديث | 2023-08-14 |
تاريخ النشر | 2020-05-23 |
تقييم | 4.28/5 مجموع تقييمات 40 |
المطور | ao.ms |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://ataiva.com/run-javascript-chrome-extension-help/?from=store |
عنوان صفحة المساعدة | https://ataiva.com/run-javascript-chrome-extension-help/?from=store |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Run Javascript", "description": "Run custom Javascript, each time you visit a website", "version": "1.11", "permissions": [ "storage", "activeTab" ], "browser_action": { "default_title": "Run Javascript", "default_icon": "icon.png", "default_popup": "popup.html" }, "icons": { "16": "icon.png", "32": "icon-32.png", "48": "icon-48.png", "64": "icon-64.png", "96": "icon-96.png", "128": "icon-128.png", "256": "icon-256.png" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; script-src 'self' 'unsafe-eval'; object-src 'self'", "permissions": [ "lib_jquery_3_3_1.js", "lib_jquery_2_2_4.js", "lib_jquery_1_12_4.js" ], "js": [ "lib_jquery_3_3_1.js", "inject.js" ], "run_at": "document_end" } ], "manifest_version": 2 } |