Run Your JavaScript

An empty extension, you run your own JavaScript in it.

Run Your JavaScript là gì?

Run Your JavaScript là một tiện ích mở rộng Chrome được phát triển bởi manecocomph, và tính năng chính của nó là "An empty extension, you run your own JavaScript in it.".

Ả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 Your JavaScript

Tải xuống các tệp mở rộng Run Your 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

                        An empty extension, you can run your own JavaScript in it with below advantages:
1) use chrome's proxy and cookies;
2) access all URLs, restful APIs without Cross-Origin Resource Sharing  issue;

it contains JQuery, JQuery-Dateformat and bootstrap in it. 

more info: http://www.tianxiaohui.com/index.php/search/Runyourjavascript/                    

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

Tên Run Your JavaScript Run Your JavaScript
ID aiokpplkfhfbijcmbpgpbomigegncfab
URL Chính Thức https://chrome.google.com/webstore/detail/run-your-javascript/aiokpplkfhfbijcmbpgpbomigegncfab
Mô tả An empty extension, you run your own JavaScript in it.
Kích Thước Tệp 196 KB
Số Lần Cài Đặt 841
Phiên Bản Hiện Tại 0.3.3
Cập Nhật Lần Cuối 2020-09-06
Ngày Phát Hành 2018-03-26
Nhà Phát Triển manecocomph
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://www.tianxiaohui.com/index.php/archives/315/
URL Trang Trợ Giúp http://www.tianxiaohui.com/index.php/archives/315/
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Run Your JavaScript",
    "description": "An empty extension, you run your own JavaScript in it.",
    "version": "0.3.3",
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "*:\/\/*\/*",
        "storage",
        "tabs",
        "notifications",
        "downloads",
        "",
        "webRequest",
        "webRequestBlocking"
    ],
    "icons": {
        "16": "icon.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_title": "Run Your JavaScript",
        "default_icon": "icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    }
}