Javascript Injector
Inject javascript to the webpage you are visiting
ما هو Javascript Injector؟
Javascript Injector هو إضافة Chrome تم تطويرها بواسطة Daniel Han، والميزة الرئيسية لها هي "Inject javascript to the webpage you are visiting".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Javascript Injector
قم بتنزيل ملفات الامتداد Javascript Injector بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension allows you to inject any javascript code into the web page you are visiting. It remembers your page specific script and syncs it across all your devices. For example, if you want to change the background color of https://duckduckgo.com/ with light blue, you can inject the script 'document.body.style.backgroundColor = "lightblue";' using this extension. After that every time you open this web site, the back ground will be light blue automatically.
معلومات أساسية عن التمديد
الاسم | Javascript Injector |
ID | ejnccfcackblkelbafbolcpjfpcmbplg |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/javascript-injector/ejnccfcackblkelbafbolcpjfpcmbplg |
الوصف | Inject javascript to the webpage you are visiting |
حجم الملف | 59.53 KB |
عدد التثبيتات | 2,000 |
النسخة الحالية | 1.2 |
آخر تحديث | 2017-06-16 |
تاريخ النشر | 2017-06-16 |
تقييم | 4.13/5 مجموع تقييمات 8 |
المطور | Daniel Han |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/hex0cter/js-injector |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Javascript Injector", "author": "Daniel Han", "short_name": "JS injector", "description": "Inject javascript to the webpage you are visiting", "version": "1.2", "browser_action": { "default_icon": { "16": "images\/icon16.png", "24": "images\/icon24.png", "32": "images\/icon32.png", "128": "images\/icon128.png" }, "default_title": "Javascript Injector", "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ] }, "permissions": [ "activeTab", "storage", "tabs", "activeTab", "http:\/\/*\/", "https:\/\/*\/" ] } |