Single Origin
Restrict loading resources from the origin domain, and chosen other domains
Single Origin क्या है?
Single Origin Unknown द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Restrict loading resources from the origin domain, and chosen other domains"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Single Origin एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" } } |