Chrome Variable

'Chrome-Variable' is a chrome extension that allows you to define variables for text in chrome and reuse them anywhere at any time.

Chrome Variableคืออะไร?

Chrome Variable เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Shafin Siddique และคุณลักษณะหลักของมันคือ "'Chrome-Variable' is a chrome extension that allows you to define variables for text in chrome and reuse them anywhere at any time."

ภาพหน้าจอของส่วนขยาย

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Chrome Variable

ดาวน์โหลดไฟล์ส่วนขยาย Chrome Variable ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Tired of copying the contents of your resume for every job application? 'Chrome-Variable' is a chrome extension that allows you to define variables for text in chrome and reuse them anywhere at any time.

Never leave the browser for retrieving information ever again! 

How to use Chrome Variable:

1) Click the extension icon to access 'Chrome Variable.' 
2) Use the form displayed to store variables. 
3) In order to use the variable, simply go on any web page with a form, type "", followed by a period.
4) As soon as you enter the period, the variable name will be replaced by the value you set.

Notes:
- You can enter the period after any number of variables. 
- Make sure to wrap your variables in the"<>" tag.

While the replace variable feature might not work on every website, Chrome Variable allows you to access variables and copy them to clipboard right from the home screen. You really never have to leave your browser for retrieving information ever again!

We are constantly working to improve Chrome Variable. If you have any suggestions or feature requests, feel free to create an issue on our Github repository.

https://github.com/shafinsiddique/chrome-variable.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Chrome Variable Chrome Variable
ID eiepnmajeaiikmnepmkiejihnbfndekg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/chrome-variable/eiepnmajeaiikmnepmkiejihnbfndekg
คำอธิบาย 'Chrome-Variable' is a chrome extension that allows you to define variables for text in chrome and reuse them anywhere at any time.
ขนาดไฟล์ 25.63 KB
จำนวนการติดตั้ง 89
เวอร์ชันปัจจุบัน 1.2
อัปเดตครั้งล่าสุด 2021-03-20
วันที่เผยแพร่ 2020-09-02
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Shafin Siddique
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/shafinsiddique/chrome-variable
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Chrome Variable",
    "description": "'Chrome-Variable' is a chrome extension that allows you to define variables for text in chrome and reuse them anywhere at any time.",
    "version": "1.2",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_end",
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "storage"
    ]
}