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文件
下載Single Origin擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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" } } |