Single Origin
Restrict loading resources from the origin domain, and chosen other domains
Τι είναι το Single Origin;
Το Single Origin είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Unknown, και η κύρια λειτουργία του είναι "Restrict loading resources from the origin domain, and chosen other domains".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Single Origin
Λήψη αρχείων επέκτασης 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 |
Επίσημο 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" } } |