Scripty - Javascript Injector

Inject your Javascript into the webpage

ما هو Scripty - Javascript Injector؟

Scripty - Javascript Injector هو إضافة Chrome تم تطويرها بواسطة https://scripty.abhisheksatre.com، والميزة الرئيسية لها هي "Inject your Javascript into the webpage".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Scripty - Javascript Injector

قم بتنزيل ملفات الامتداد Scripty - Javascript Injector بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        The Scripty extension allows you to inject custom javascript to a webpage.

Features:
1. Inject script based on URL, host or regex.
2. Download script from Script Store.
3. Run the script directly from the context menu.
4. Publish script on Script Store.
5. Share script with other users.
6. Enable/Disable the scripts

How To Use:
1. Add your custom script in the Scripty extension.
2. Select the execution mode: Manual/Automatic
3. To run a script: 
- Open the extension and click the play button.
Or
- Run a script from the context menu. Right Click > Select Scripty > Select your script.
4. Automatic scripts run automatically based on provided configuration.                    

معلومات أساسية عن التمديد

الاسم Scripty - Javascript Injector Scripty - Javascript Injector
ID milkbiaeapddfnpenedfgbfdacpbcbam
عنوان URL الرسمي https://chromewebstore.google.com/detail/scripty-javascript-inject/milkbiaeapddfnpenedfgbfdacpbcbam
الوصف Inject your Javascript into the webpage
حجم الملف 22.85 KB
عدد التثبيتات 24,334
النسخة الحالية 0.0.2
آخر تحديث 2020-01-30
تاريخ النشر 2020-01-30
تقييم 4.18/5 مجموع تقييمات 60
المطور https://scripty.abhisheksatre.com
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://scripty.abhisheksatre.com/
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Scripty - Javascript Injector",
    "short_name": "Scripty",
    "description": "Inject your Javascript into the webpage",
    "version": "0.0.2",
    "author": "Abhishek Satre",
    "browser_action": {
        "default_icon": {
            "16": "images\/icon_16.png",
            "32": "images\/icon_128.png"
        }
    },
    "icons": {
        "16": "images\/icon_16.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage",
        "unlimitedStorage",
        "webNavigation",
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "web_accessible_resources": [],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}