Permanent clipboard

Allows you to store and access multiple elements in clipboard

Permanent clipboard क्या है?

Permanent clipboard https://bartosz.im/permanent-clipboard द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows you to store and access multiple elements in clipboard"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Permanent clipboard एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        How many times you wanted to keep important, but hard to remember, information at your mouse click without leaving the browser?
Now you can achieve it with Permanent clipboard.
This extensions allows you to save browser clipboard element with friendly name at your fingertips. Now you can store things like phone number, answer templates for discussion forums or bank account numbers.                    

एक्सटेंशन की मूल जानकारी

नाम Permanent clipboard Permanent clipboard
ID hilkjcfodmbdgpadbpehimibheopoccb
आधिकारिक URL https://chromewebstore.google.com/detail/permanent-clipboard/hilkjcfodmbdgpadbpehimibheopoccb
विवरण Allows you to store and access multiple elements in clipboard
फ़ाइल का आकार 1.23 MB
स्थापना संख्या 63,730
वर्तमान संस्करण 2.5.5
अंतिम अपडेट 2021-10-19
प्रकाशन तिथि 2020-05-12
रेटिंग 4.30/5 कुल 209 रेटिंग्स
डेवलपर https://bartosz.im/permanent-clipboard
ईमेल [email protected]
भुगतान के प्रकार free
सहायता पृष्ठ URL https://github.com/przybylski/permanent-clipboard/issues
गोपनीयता नीति पृष्ठ URL https://permanent-clipboard.app/privacy
समर्थित भाषाएँ de,en,pl
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "persistent": false,
        "scripts": [
            "constants.js",
            "analytics.js",
            "storage.js",
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "38": "img\/icon-38.png",
            "19": "img\/icon-19.png"
        },
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "constants.js",
                "contentscript.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "all_frames": true
        }
    ],
    "default_locale": "en",
    "description": "__MSG_extensionDescription__",
    "icons": {
        "128": "img\/icon-128.png",
        "16": "img\/icon-16.png"
    },
    "manifest_version": 2,
    "name": "__MSG_extensionName__",
    "options_page": "options.html",
    "permissions": [
        "storage",
        "contextMenus",
        "tabs",
        "activeTab",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "version": "2.5.5",
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}