Register invitation code assistant
Automatically detect the invitation code in the page, and generate a list based on the mask to assist detection
Register invitation code assistantคืออะไร?
Register invitation code assistant เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Hoothin และคุณลักษณะหลักของมันคือ "Automatically detect the invitation code in the page, and generate a list based on the mask to assist detection"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Register invitation code assistant
ดาวน์โหลดไฟล์ส่วนขยาย Register invitation code assistant ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Extract the invitation code on the web page(as most bbs which need invitation code to register) automatically, detect the invitation code list manually filled in and check the validity automatically.
* Optional: The image verification code needs to be filled with the identification interface, which can be replaced by a local server below. If you don’t set the interface, you need to manually enter the image verification code.
github.com/hoothin/imgCodeCheck
Custom mask rules for bullet boxes:
*: The asterisk will be replaced with 0-9 and a-f 16 characters
[abcd]: will be replaced with a, b, c, d respectively
[x-y]: will be replaced with all characters between x and y
Multiple masks are supported
Sample invitation code:
12*d means 121d 122d...12fd
ec[1-3]f means ec1f ec2f ec3f
f9[1a-cf]0a means f910a f9a0a f9b0a f9c0a f9f0a ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | ndmlflmkmohjoechiepcpflbljadmemp |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/register-invitation-code/ndmlflmkmohjoechiepcpflbljadmemp |
| คำอธิบาย | Automatically detect the invitation code in the page, and generate a list based on the mask to assist detection |
| ขนาดไฟล์ | 137 KB |
| จำนวนการติดตั้ง | 810 |
| เวอร์ชันปัจจุบัน | 1.0.14 |
| อัปเดตครั้งล่าสุด | 2023-12-24 |
| วันที่เผยแพร่ | 2021-12-02 |
| คะแนน | 4.20/5 รวมทั้งหมด 5 คะแนน |
| ผู้พัฒนา | Hoothin |
| อีเมล | [email protected] |
| ประเภทการชำระเงิน | free |
| ภาษาที่รองรับ | en,zh-CN |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "__MSG_extName__",
"version": "1.0.14",
"default_locale": "en",
"manifest_version": 3,
"description": "__MSG_extDescription__",
"icons": {
"128": "icon\/icon128.png",
"16": "icon\/icon16.png",
"48": "icon\/icon48.png"
},
"action": {
"default_icon": "favicon.png",
"default_title": "__MSG_extName__",
"default_popup": "popup.html"
},
"content_scripts": [
{
"js": [
"js\/geneCode.js",
"js\/content.js"
],
"matches": [
"*:\/\/*\/*"
]
}
],
"permissions": [
"tabs",
"storage",
"notifications"
],
"host_permissions": [
"*:\/\/*\/*"
],
"background": {
"service_worker": "js\/background.js"
}
} | |