Text Snippets

Inserts text into any text field at the click of a button.

Τι είναι το Text Snippets;

Το Text Snippets είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://getcrx.cn, και η κύρια λειτουργία του είναι "Inserts text into any text field at the click of a button.".

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

screenshot

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

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

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

                        Support:
1.Manage Text
2. Import / Export

Update:
- v2.2.0 fixed: can not add texts in folders.

To my user:
Many users want me to add the ability to store snippets online.
I also think it is necessary, and I also have the technology to develop it.
However, resources such as the service host require some economic cost.
Will you still use it if I charge for it?
How much are you willing to pay for it?
I want to know your thoughts.

--Sigma 2023.2.8 from China                    

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

Όνομα Text Snippets Text Snippets
ID nfkicldpnflkchmbaliabnplahdhipip
Επίσημο URL https://chromewebstore.google.com/detail/text-snippets/nfkicldpnflkchmbaliabnplahdhipip
Περιγραφή Inserts text into any text field at the click of a button.
Μέγεθος Αρχείου 210 KB
Αριθμός Εγκαταστάσεων 8,486
Τρέχουσα Έκδοση 2.2.0
Τελευταία Ενημέρωση 2023-02-09
Ημερομηνία Δημοσίευσης 2019-03-08
Αξιολόγηση 2.95/5 Συνολικά 19 Αξιολογήσεις
Προγραμματιστής https://getcrx.cn
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
URL της Σελίδας Πολιτικής Απορρήτου https://github.com/g8up/youDaoDict/wiki/privacy
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "2.2.0",
    "background": {
        "scripts": [
            "js\/store.js",
            "js\/settings.js",
            "js\/menu.js",
            "js\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": "gfx\/icon_16.png",
        "default_title": "Text Snippets Options"
    },
    "content_scripts": [
        {
            "all_frames": false,
            "js": [
                "js\/content.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "description": "Inserts text into any text field at the click of a button.",
    "icons": {
        "128": "gfx\/icon_128.png",
        "16": "gfx\/icon_16.png",
        "48": "gfx\/icon_48.png"
    },
    "name": "Text Snippets",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "permissions": [
        "contextMenus"
    ],
    "content_security_policy": "object-src 'self'; script-src 'self';",
    "manifest_version": 2
}