Run Javascript

Run custom Javascript, each time you visit a website

Run Javascript क्या है?

Run Javascript ao.ms द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Run custom Javascript, each time you visit a website"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Run Javascript एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 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
सहायता पृष्ठ URL 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
}