Open to Scroll
An extension to open a link to the same position on the page as you are currently scrolled to.
ما هو Open to Scroll؟
Open to Scroll هو إضافة Chrome تم تطويرها بواسطة laurence2000، والميزة الرئيسية لها هي "An extension to open a link to the same position on the page as you are currently scrolled to.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Open to Scroll
قم بتنزيل ملفات الامتداد Open to Scroll بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension allows you to navigate pages on websites while maintaining your current position. Useful for browsing within a site that has a constant layout, particularly video streaming sites, it allows you to move from one video to the next without adjusting the page. Update version 1.12: Modernized code Fixed required permissions Redirect links should now work. Update version 1.11 Fixed code to allow using links without opening a new tab --Fix only works for links without redirects, you can open a link an maintain position only if the url on the link matches the url you end on. Will look into fixing this Update version 1.1: Cleaned up visible components Added Icons Sped up the code
معلومات أساسية عن التمديد
الاسم | Open to Scroll |
ID | locammkpnfafhjppibeobpibdeobafkg |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/open-to-scroll/locammkpnfafhjppibeobpibdeobafkg |
الوصف | An extension to open a link to the same position on the page as you are currently scrolled to. |
حجم الملف | 28.97 KB |
عدد التثبيتات | 46 |
النسخة الحالية | 1.12 |
آخر تحديث | 2023-03-07 |
تاريخ النشر | 2015-09-23 |
المطور | laurence2000 |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Open to Scroll", "description": "An extension to open a link to the same position on the page as you are currently scrolled to.", "version": "1.12", "permissions": [ "contextMenus", "scripting" ], "host_permissions": [ "*:\/\/*\/*" ], "icons": { "16": "16Icon.png", "48": "48Icon.png", "128": "128Icon.png" }, "background": { "service_worker": "scrollMenu.js" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "scroll.js" ] } ] } |