Single Origin
Restrict loading resources from the origin domain, and chosen other domains
Single Origin란 무엇입니까?
Single Origin은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Restrict loading resources from the origin domain, and chosen other domains"입니다.
확장 프로그램 스크린샷
Single Origin 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Prevent the browser from loading resources from domains other than those you visit and any exceptions you choose. This is different to other extensions which have a long list of disallowed domains - every cross domain request is blocked until explicitly permitted With this extension when each page is loaded it can only load resources (Javascript, images, css, frames, etc) from the same domain (subdomains are permitted). Resources can be permitted from other domains using the popup on the icon in the browser toolbar. If a frame is loaded from another domain then permissions can be set for that domain separately. The extension can also be set to allow all resources for a tab using the popup.
확장 프로그램 기본 정보
이름 | Single Origin |
ID | aldihiefnmdalclppcahjjgkfaadpaig |
공식 URL | https://chromewebstore.google.com/detail/single-origin/aldihiefnmdalclppcahjjgkfaadpaig |
설명 | Restrict loading resources from the origin domain, and chosen other domains |
파일 크기 | 56.26 KB |
설치 횟수 | 10 |
현재 버전 | 0.0.1 |
최근 업데이트 | 2020-06-19 |
출시 날짜 | 2020-06-18 |
개발자 | Unknown |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Single Origin", "version": "0.0.1", "description": "Restrict loading resources from the origin domain, and chosen other domains", "manifest_version": 2, "background": { "scripts": [ "src\/common.js", "src\/suffixes.js", "src\/background.js" ], "persistent": true }, "permissions": [ "storage", "webRequestBlocking", "webRequest", "*:\/\/*\/", "webNavigation" ], "browser_action": { "default_icon": { "16": "src\/icon-16.png", "32": "src\/icon-32.png", "48": "src\/icon-48.png", "128": "src\/icon-128.png" }, "default_title": "Single Origin", "default_popup": "src\/popup.html" }, "options_ui": { "page": "src\/options.html", "open_in_tab": false }, "icons": { "16": "src\/icon-16.png", "32": "src\/icon-32.png", "48": "src\/icon-48.png", "128": "src\/icon-128.png" } } |