Custom Site JS
Run your own (per url or domain) custom JavaScript on sites.
Custom Site JS란 무엇입니까?
Custom Site JS은(는) David Hicken에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Run your own (per url or domain) custom JavaScript on sites."입니다.
확장 프로그램 스크린샷
Custom Site JS 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Have you ever wished you could customize a website to your personal preferences every time you visited it? Ever heard of a bookmarklet? Bookmarklets run JavaScript on a page for you when you click on the bookmark. But how inconvenient to have to click a bookmark every time you visit a site? What if you could have your JavaScript simply run on the site as the page loads with no extra effort from you? That's what this extension is about. Custom Site JS allows you to Add, Edit, or Delete snippets of custom JavaScript, that will automatically be run on a page for you based on a URL you provide. You can create as many as you like. The only limit is a maximum of 5 megabytes as the scripts are stored in your local storage. Everything is stored and run locally. This extension will never make any kind of external web request, network requests, or in short send any of your information anywhere. The only way it will pass any information outside of your local environment is if you create a snippet of JavaScript that explicitly sends information somewhere.
확장 프로그램 기본 정보
이름 | Custom Site JS |
ID | pclbdoihplpfbkmebiaojnhfbgdgkcol |
공식 URL | https://chromewebstore.google.com/detail/custom-site-js/pclbdoihplpfbkmebiaojnhfbgdgkcol |
설명 | Run your own (per url or domain) custom JavaScript on sites. |
파일 크기 | 92.18 KB |
설치 횟수 | 27 |
현재 버전 | 1.0.1 |
최근 업데이트 | 2020-11-20 |
출시 날짜 | 2019-10-28 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | David Hicken |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Custom Site JS", "version": "1.0.1", "description": "Run your own (per url or domain) custom JavaScript on sites.", "icons": { "16": "image\/icon16.png", "32": "image\/icon32.png", "48": "image\/icon48.png", "64": "image\/icon64.png", "128": "image\/icon128.png" }, "browser_action": { "default_icon": { "16": "image\/icon16.png", "32": "image\/icon32.png", "48": "image\/icon48.png", "64": "image\/icon64.png", "128": "image\/icon128.png" }, "default_popup": "html\/index.html" }, "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "permissions": [ "webNavigation", "storage", "tabs", "*:\/\/*\/*" ] } |