E-tax Password Keeper
Build an Extension!
ما هو E-tax Password Keeper؟
E-tax Password Keeper هو إضافة Chrome تم تطويرها بواسطة Orkhan Talibzade، والميزة الرئيسية لها هي "Build an Extension!".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة E-tax Password Keeper
قم بتنزيل ملفات الامتداد E-tax Password Keeper بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
E-Tax Password Keeper - is an Chrome and Edge extension for simplifying access to Tax accounts of Companies and Sole Traders. Accountants can keep all the necessary information to enter the tax account of each company in this extension and then fill in all the required fields just by selecting the company name from the list. Thus, there is no need to copy information for each field from a separate file or write it manually.
معلومات أساسية عن التمديد
الاسم | |
ID | bgmkipojddhgkldepjbajgioekjpgjgc |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/e-tax-password-keeper/bgmkipojddhgkldepjbajgioekjpgjgc |
الوصف | Build an Extension! |
حجم الملف | 75.42 KB |
عدد التثبيتات | 122 |
النسخة الحالية | 0.0001 |
آخر تحديث | 2021-02-07 |
تاريخ النشر | 2021-02-07 |
تقييم | 5.00/5 مجموع تقييمات 2 |
المطور | Orkhan Talibzade |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
عنوان صفحة المساعدة | https://www.linkedin.com/in/orkhan-talibzade/ |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "E-tax Password Keeper", "version": "0.0001", "description": "Build an Extension!", "manifest_version": 2, "browser_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/VP icon.png", "32": "images\/VP icon.png", "48": "images\/VP icon.png", "128": "images\/VP icon.png" } }, "icons": { "16": "images\/VP icon.png", "32": "images\/VP icon.png", "48": "images\/VP icon.png", "128": "images\/VP icon.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "activeTab", "storage" ], "content_scripts": [ { "matches": [ "https:\/\/login.e-taxes.gov.az\/login\/" ], "js": [ "content.js" ] } ] } |