Tagged Bookmarks
A browser action with a popup dump of all bookmarks, including search, add, edit and delete.
ما هو Tagged Bookmarks؟
Tagged Bookmarks هو إضافة Chrome تم تطويرها بواسطة paulshir، والميزة الرئيسية لها هي "A browser action with a popup dump of all bookmarks, including search, add, edit and delete.".
تحميل ملف CRX للإضافة Tagged Bookmarks
قم بتنزيل ملفات الامتداد Tagged Bookmarks بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
A simple extension that enables you to store and search for tags in your bookmarks. It works by adding extra metadata to your existing bookmarks so your tags are synced with your chrome bookmarks.
معلومات أساسية عن التمديد
الاسم | Tagged Bookmarks |
ID | ifmjnildbmfokeoakbbhjebmiepcjgfc |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/tagged-bookmarks/ifmjnildbmfokeoakbbhjebmiepcjgfc |
الوصف | A browser action with a popup dump of all bookmarks, including search, add, edit and delete. |
حجم الملف | 12.41 KB |
عدد التثبيتات | 10 |
النسخة الحالية | 0.1 |
آخر تحديث | 2014-10-08 |
تاريخ النشر | 2014-10-08 |
تقييم | 4.00/5 مجموع تقييمات 1 |
المطور | paulshir |
نوع الدفع | free |
اللغات المدعومة | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tagged Bookmarks", "version": "0.1", "description": "A browser action with a popup dump of all bookmarks, including search, add, edit and delete.", "permissions": [ "tabs", "bookmarks" ], "omnibox": { "keyword": "tags" }, "icons": { "16": "tag_16.png", "48": "tag_48.png", "128": "tag_128.png" }, "browser_action": { "default_title": "Tagged Bookmarks", "default_icon": "tag_16.png", "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ] }, "manifest_version": 2, "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'" } |