Javascript runner

This extension allows you to execute Javascript code on site pages (after they have been fully loaded).

What is Javascript runner?

Javascript runner is a Chrome extension developed by https://namata.ru, and its main feature is "This extension allows you to execute Javascript code on site pages (after they have been fully loaded).".

Extension Screenshots

screenshot

Download Javascript runner Extension CRX File

Download Javascript runner extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        This extension allows you to execute Javascript code on site pages (after they have been fully loaded). Just click on extension icon, write your javascript code and press "Set". After that this script will execute each time when page on this site is full loaded.                    

Extension Basic Information

Name Javascript runner Javascript runner
ID kfokpcnpgiffpnlekenpdfohkieecmdf
Official URL https://chromewebstore.google.com/detail/javascript-runner/kfokpcnpgiffpnlekenpdfohkieecmdf
Description This extension allows you to execute Javascript code on site pages (after they have been fully loaded).
File Size 252 KB
Installation Count 144
Current Version 1.1
Last Updated 2020-11-05
Publish Date 2020-11-05
Rating 1.00/5 Total 1 Ratings
Developer https://namata.ru
Email [email protected]
Payment Type free
Extension Website https://en.namata.ru/extensions/javascriptrunner/
Help Page URL https://en.namata.ru/support/thanksforinstall/
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Javascript runner",
    "description": "This extension allows you to execute Javascript code on site pages (after they have been fully loaded).",
    "version": "1.1",
    "browser_action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab"
    ]
}