run-script

run script on page load

Was ist run-script?

run-script ist eine Chrome-Erweiterung, die von zhangsanshi5566 entwickelt wurde, und ihr Hauptmerkmal ist "run script on page load".

Erweiterungsscreenshots

screenshot

run-script-Erweiterungs-CRX-Datei herunterladen

Laden Sie run-script-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        We need run script for test  or  other things. If we don't want to  open console tab every times, you can choose this  tool.                    

Grundlegende Informationen zur Erweiterung

Name run-script run-script
ID gddnebgjhlhediiojefadmljmnjfomak
Offizielle URL https://chrome.google.com/webstore/detail/run-script/gddnebgjhlhediiojefadmljmnjfomak
Beschreibung run script on page load
Dateigröße 728 KB
Installationsanzahl 17
Aktuelle Version 0.0.2
Letztes Update 2017-02-26
Veröffentlichungsdatum 2017-02-26
Entwickler zhangsanshi5566
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "run-script",
    "version": "0.0.2",
    "manifest_version": 2,
    "description": "run script on page load",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "permissions": [
        "tabs",
        "activeTab",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "debugger",
        "notifications",
        "pageCapture",
        "topSites",
        "storage",
        "unlimitedStorage"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true,
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "run_at": "document_start",
            "all_frames": false
        }
    ],
    "browser_action": {
        "default_icon": {
            "19": "images\/icon-19.png",
            "38": "images\/icon-38.png"
        },
        "default_title": "run script",
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        "images\/icon-48.png"
    ]
}