Quick Login for Google Accounts (minor fix)
This is not my extension. I have just added two lines of code to make this work.
Quick Login for Google Accounts (minor fix)คืออะไร?
Quick Login for Google Accounts (minor fix) เป็นส่วนขยายของ Chrome ที่พัฒนาโดย robotreply และคุณลักษณะหลักของมันคือ "This is not my extension. I have just added two lines of code to make this work."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Quick Login for Google Accounts (minor fix)
ดาวน์โหลดไฟล์ส่วนขยาย Quick Login for Google Accounts (minor fix) ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
One click google sign in. This is not my extension. I have just added two lines of code to make this work." ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | aghppbkjbhgjnapmofheihifejlblaee |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/quick-login-for-google-ac/aghppbkjbhgjnapmofheihifejlblaee |
| คำอธิบาย | This is not my extension. I have just added two lines of code to make this work. |
| ขนาดไฟล์ | 82.01 KB |
| จำนวนการติดตั้ง | 306 |
| เวอร์ชันปัจจุบัน | 0.7.9.4 |
| อัปเดตครั้งล่าสุด | 2014-08-08 |
| วันที่เผยแพร่ | 2014-08-08 |
| ผู้พัฒนา | robotreply |
| ประเภทการชำระเงิน | free |
| ภาษาที่รองรับ | en |
| manifest.json | |
{
"background": {
"page": "background.html"
},
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html",
"default_title": "This is not my extension. I have just added two lines of code to make this work."
},
"content_scripts": [
{
"js": [
"jquery-1.7.2.min.js",
"login.js"
],
"matches": [
"https:\/\/www.google.com\/*",
"https:\/\/accounts.google.com\/*"
],
"run_at": "document_end"
}
],
"content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
"description": "This is not my extension. I have just added two lines of code to make this work.",
"icons": {
"128": "icon_128.png",
"16": "icon_16.png",
"48": "icon_48.png"
},
"manifest_version": 2,
"name": "Quick Login for Google Accounts (minor fix)",
"options_page": "options.html",
"permissions": [
"cookies",
"tabs",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
"version": "0.7.9.4",
"web_accessible_resources": [
"icon_open_left2.png",
"offline.png",
"hover_left.png",
"hover_bg.png",
"hover_right.png",
"online.png"
]
} | |