Bookmark Checker
Tells you if you have a link bookmarked
Apa itu Bookmark Checker?
Bookmark Checker adalah ekstensi Chrome yang dikembangkan oleh KnowhereStudios, dan fitur utamanya adalah "Tells you if you have a link bookmarked".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Bookmark Checker
Unduh file ekstensi Bookmark Checker dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Bookmark Checker |
ID | facjaacomlejpkcfkplhmpkolgnonidh |
URL Resmi | https://chromewebstore.google.com/detail/bookmark-checker/facjaacomlejpkcfkplhmpkolgnonidh |
Deskripsi | Tells you if you have a link bookmarked |
Ukuran File | 103 KB |
Jumlah Instalasi | 28 |
Versi Saat Ini | 1.0.1 |
Terakhir Diperbarui | 2020-07-22 |
Tanggal Publikasi | 2020-07-07 |
Pengembang | KnowhereStudios |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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 } |