Throttle

Throttle Browser Extension

Vad är Throttle?

Throttle är en Chrome-tillägg utvecklad av https://throttlehq.com, och dess huvudfunktion är "Throttle Browser Extension".

Tilläggsskärmbilder

screenshot

Ladda ner Throttle-förlängningens CRX-fil

Ladda ner Throttle-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Control who can send you email. A cleaner inbox means a happier you. Throttle is a service that keeps your email address safe and your inbox clean. By seamlessly substituting random, unique email addresses for use online, it gives users control over who gets into their inboxes, for the first time ever.

The Throttle extension provides a button in sign up forms that allows you to generate unique email address to sign up with so you don't have to give out your real address.

Please see pricing at https://throttlehq.com/pricing

v1.1.8 (2021-02-20)
- Fixed another bug where the Throttle button may not work on email text fields in Chrome.

v1.1.7 (2021-02-20)
- Fixed a bug where the Throttle button may not work on email text fields in Chrome.

v1.1.6 (2020-10-28)
- Removed unneeded permissions.

v1.1.5 (2017-12-17)
- Fixed a bug where email addresses could not be copied.
- Fixed a stying issue with the generated addresses listing.

v1.1.4 (2017-11-18)
- Fixed WebExtension API deprecations and lightened the package load.

v1.1.3 (2017-10-05)
- No longer automatically query Throttle for an address on every page you visit.

v1.1.2 (2016-06-28)
- Added back number of authorizations left for free users
- Added color icon

v1.1.1 (2016-04-15)
--
- Fix bug generating multiple addresses for domain at once

v1.1.0 (2016-04-05)
--
- Add 'Generate new address for this site' button in toolbar popover to generate new addresses on the fly
- Display 'Checking authorizations...' as placeholder text instead of '1 authorization made a medium.com'
- Fix popover displaying incorrect subscription list when multiple windows are open
- Fix popover panel sizing

v1.0.10 (2016-03-21)
--
- Added retina icon for popup button
- Changed upgrade text in popup
- Removed `Categories` button
- Added `Feedback & Support` button                    

Grundläggande Information om Tillägg

Namn Throttle Throttle
ID klmapenfmenbohghcdlilacfhckhcbnn
Officiell webbadress https://chromewebstore.google.com/detail/throttle/klmapenfmenbohghcdlilacfhckhcbnn
Beskrivning Throttle Browser Extension
Filstorlek 276 KB
Antal Installationer 1,492
Aktuell Version 1.1.8
Senast Uppdaterad 2021-02-22
Publiceringsdatum 2017-11-15
Betyg 4.57/5 Totalt 7 Betyg
Utvecklare https://throttlehq.com
E-post [email protected]
Betalningssätt in_app
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Throttle",
    "version": "1.1.8",
    "manifest_version": 2,
    "description": "Throttle Browser Extension",
    "homepage_url": "https:\/\/throttlehq.com",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "page": "src\/bg\/background.html",
        "persistent": true
    },
    "browser_action": {
        "default_icon": {
            "19": "icons\/icon19.png",
            "38": "icons\/icon38.png"
        },
        "default_title": "Throttle",
        "default_popup": "src\/browser_action\/browser_action.html"
    },
    "permissions": [
        "clipboardWrite",
        "contextMenus",
        "https:\/\/throttlehq.com\/",
        "tabs",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/jquery\/jquery.min.js",
                "src\/inject\/inject.js"
            ],
            "css": [
                "css\/bootstrap.scoped.css",
                "css\/throttle.css"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "images\/*.png",
        "js\/*.js"
    ]
}