Run Javascript

Run custom Javascript, each time you visit a website

Run Javascriptとは何ですか?

Run Javascriptはao.msによって開発されたChromeの拡張機能で、その主な機能は「Run custom Javascript, each time you visit a website」です。

拡張機能のスクリーンショット

screenshot

Run Javascript拡張機能のCRXファイルをダウンロード

Run Javascript拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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
}