Roots
Show a view of the links of a page - sorted by relevance
ما هو Roots؟
Roots هو إضافة Chrome تم تطويرها بواسطة benjadahl، والميزة الرئيسية لها هي "Show a view of the links of a page - sorted by relevance".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Roots
قم بتنزيل ملفات الامتداد Roots بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Roots is a Chrome extension that will show all of the links on the current page, and sort them in a list by relevance. This can make your browsing more effecient on pages you do not already know. Roots is free/open source software released under the GPL-v3 license. The source code can be found here: https://github.com/Benjadahl/Roots
معلومات أساسية عن التمديد
الاسم | |
ID | ammpglpaepfccjlpaecinhcdldiphpbi |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/roots/ammpglpaepfccjlpaecinhcdldiphpbi |
الوصف | Show a view of the links of a page - sorted by relevance |
حجم الملف | 12.6 KB |
عدد التثبيتات | 17 |
النسخة الحالية | 1.0.0 |
آخر تحديث | 2016-12-30 |
تاريخ النشر | 2016-12-30 |
المطور | benjadahl |
نوع الدفع | free |
موقع الإضافة | https://github.com/Benjadahl/Roots |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Roots", "description": "Show a view of the links of a page - sorted by relevance", "version": "1.0.0", "options_ui": { "page": "options\/options.html", "chrome_style": true }, "browser_action": { "default_icon": "resources\/icon.png", "default_popup": "popup\/popup.html" }, "icons": { "128": "resources\/icon.png" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "resources\/domain.js", "pull.js" ] } ], "background": { "scripts": [ "background.js" ], "persistent": true }, "permissions": [ "activeTab", "tabs", "storage" ] } |