Run Your JavaScript

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

Run Your JavaScript란 무엇입니까?

Run Your JavaScript은(는) manecocomph에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An empty extension, you run your own JavaScript in it."입니다.

확장 프로그램 스크린샷

screenshot

Run Your JavaScript 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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/                    

확장 프로그램 기본 정보

이름 Run Your JavaScript Run Your JavaScript
ID aiokpplkfhfbijcmbpgpbomigegncfab
공식 URL https://chrome.google.com/webstore/detail/run-your-javascript/aiokpplkfhfbijcmbpgpbomigegncfab
설명 An empty extension, you run your own JavaScript in it.
파일 크기 196 KB
설치 횟수 841
현재 버전 0.3.3
최근 업데이트 2020-09-06
출시 날짜 2018-03-26
개발자 manecocomph
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://www.tianxiaohui.com/index.php/archives/315/
도움말 페이지 URL http://www.tianxiaohui.com/index.php/archives/315/
지원되는 언어 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
    }
}