Run Javascript

Run custom Javascript, each time you visit a website

Run Javascript là gì?

Run Javascript là một tiện ích mở rộng Chrome được phát triển bởi ao.ms, và tính năng chính của nó là "Run custom Javascript, each time you visit a website".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Run Javascript

Tải xuống các tệp mở rộng Run Javascript dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Run Javascript Run Javascript
ID lmilalhkkdhfieeienjbiicclobibjao
URL Chính Thức https://chromewebstore.google.com/detail/run-javascript/lmilalhkkdhfieeienjbiicclobibjao
Mô tả Run custom Javascript, each time you visit a website
Kích Thước Tệp 2.18 MB
Số Lần Cài Đặt 35,056
Phiên Bản Hiện Tại 1.11
Cập Nhật Lần Cuối 2023-08-14
Ngày Phát Hành 2020-05-23
Đánh Giá 4.28/5 Tổng số 40 Đánh Giá
Nhà Phát Triển ao.ms
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://ataiva.com/run-javascript-chrome-extension-help/?from=store
URL Trang Trợ Giúp https://ataiva.com/run-javascript-chrome-extension-help/?from=store
Ngôn Ngữ Được Hỗ Trợ 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
}