307 Redirect

Redirect any source url to a different url (local or remote). Simple, popup interface.

Τι είναι το 307 Redirect;

Το 307 Redirect είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://www.gieson.com, και η κύρια λειτουργία του είναι "Redirect any source url to a different url (local or remote). Simple, popup interface.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης 307 Redirect

Λήψη αρχείων επέκτασης 307 Redirect σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Provides a means to swap (redirect, re-route, or block) a file at the network level, rather than having to physically change the source URL.

307 Redirect has an intuitive and fluid UI, with reliable and modern (manifest v3) backend.

Features:
- Redirect URL
- Block URL
- Toggle Individual items on/off.
- Toggle all items on/off.
- Quick see enabled with grey'd out icon in toolbar.
- Drag and drop to re-arrange items.
- Minimize item.
- Export/Import for sharing setup.
- Color "dot" for quick-reference related items.
- Duplicate item.

Great for:
- Quickly evaluating local files in a production environment (or vice versa) without having to upload/push changes.
- Blocking URLs

Works for scripts, images, css, or any other file transferred over the network. 

This extension provides a simplified UI for managing the browser's declarativeNetRequest capacity to redirect network requests "on the fly".

Traditionally, web servers have a mechanism to redirect resources at the server-level, known as "307 Temporary Redirect", which provide a "307" status code to the browser. Server-level redirects are altogether different animals than browser-based redirects, but the end result is the same -- the browser does not fetch the original resource, it fetches the resource that the redirect is pointing at.

This extension provides the same type of functionality as a server-redirect, but much more convenient for developers, since the redirect can be quickly configured temporarily directly in the browser.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα 307 Redirect 307 Redirect
ID delicdfbcpogjjfcobfkdgahdadoninm
Επίσημο URL https://chromewebstore.google.com/detail/307-redirect/delicdfbcpogjjfcobfkdgahdadoninm
Περιγραφή Redirect any source url to a different url (local or remote). Simple, popup interface.
Μέγεθος Αρχείου 1.85 MB
Αριθμός Εγκαταστάσεων 80
Τρέχουσα Έκδοση 1.1.0
Τελευταία Ενημέρωση 2022-07-01
Ημερομηνία Δημοσίευσης 2022-06-03
Αξιολόγηση 3.67/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής https://www.gieson.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://www.gieson.com/Library/projects/utilities/307-redirect/
Διεύθυνση URL της Σελίδας Βοήθειας https://www.gieson.com/Library/projects/utilities/307-redirect/
URL της Σελίδας Πολιτικής Απορρήτου https://www.gieson.com/privacy.html
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "307 Redirect",
    "version": "1.1.0",
    "author": "mike gieson",
    "description": "Redirect any source url to a different url (local or remote). Simple, popup interface.",
    "icons": {
        "16": "images\/icons\/icon-16.png",
        "19": "images\/icons\/icon-19.png",
        "32": "images\/icons\/icon-32.png",
        "48": "images\/icons\/icon-48.png",
        "64": "images\/icons\/icon-64.png",
        "128": "images\/icons\/icon-128.png",
        "512": "images\/icons\/icon-512.png"
    },
    "action": {
        "default_icon": {
            "16": "images\/icons\/icon-16.png",
            "19": "images\/icons\/icon-19.png",
            "32": "images\/icons\/icon-32.png",
            "48": "images\/icons\/icon-48.png",
            "64": "images\/icons\/icon-64.png",
            "128": "images\/icons\/icon-128.png",
            "512": "images\/icons\/icon-512.png"
        },
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "declarativeNetRequest",
        "storage"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ]
}