Bookmark Checker
Tells you if you have a link bookmarked
Bookmark Checkerคืออะไร?
Bookmark Checker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย KnowhereStudios และคุณลักษณะหลักของมันคือ "Tells you if you have a link bookmarked"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Bookmark Checker
ดาวน์โหลดไฟล์ส่วนขยาย Bookmark Checker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension allows you to see if a link your cursor is on is bookmarked or not.
Instructions:
Install the Bookmark Checker extension.
Hover over any link on page.
If the link is bookmarked an icon will appear next to it. ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | facjaacomlejpkcfkplhmpkolgnonidh |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/bookmark-checker/facjaacomlejpkcfkplhmpkolgnonidh |
| คำอธิบาย | Tells you if you have a link bookmarked |
| ขนาดไฟล์ | 103 KB |
| จำนวนการติดตั้ง | 28 |
| เวอร์ชันปัจจุบัน | 1.0.1 |
| อัปเดตครั้งล่าสุด | 2020-07-22 |
| วันที่เผยแพร่ | 2020-07-07 |
| ผู้พัฒนา | KnowhereStudios |
| อีเมล | [email protected] |
| ประเภทการชำระเงิน | free |
| ภาษาที่รองรับ | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Bookmark Checker",
"version": "1.0.1",
"description": "Tells you if you have a link bookmarked",
"permissions": [
"declarativeContent",
"activeTab",
"bookmarks"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"page_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images\/get_started16.png",
"32": "images\/get_started32.png",
"48": "images\/get_started48.png",
"128": "images\/get_started128.png"
}
},
"icons": {
"16": "images\/get_started16.png",
"32": "images\/get_started32.png",
"48": "images\/get_started48.png",
"128": "images\/get_started128.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"jquery.js",
"content_script.js"
]
}
],
"manifest_version": 2
} | |