Kill-Sticky
Remove all elements with fixed or sticky positions
ما هو Kill-Sticky؟
Kill-Sticky هو إضافة Chrome تم تطويرها بواسطة Unknown، والميزة الرئيسية لها هي "Remove all elements with fixed or sticky positions".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Kill-Sticky
قم بتنزيل ملفات الامتداد Kill-Sticky بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Lets you get rid of distracting headers and ads by adding a browser action and a keyboard shortcut (Alt+K on Windows & Linux, Cmd+K on macOS) that removes all elements from the current page that have a "fixed" or "sticky" position, and re-enables scrolling for the page contents.
To change the keyboard shortcut, visit the page chrome://extensions/shortcuts معلومات أساسية عن التمديد
| الاسم | |
| ID | lekjlgffkaencjnlcmbgibodhechofdb |
| عنوان URL الرسمي | https://chromewebstore.google.com/detail/kill-sticky/lekjlgffkaencjnlcmbgibodhechofdb |
| الوصف | Remove all elements with fixed or sticky positions |
| حجم الملف | 3.43 KB |
| عدد التثبيتات | 1,506 |
| النسخة الحالية | 1.4.0 |
| آخر تحديث | 2019-06-06 |
| تاريخ النشر | 2019-06-05 |
| تقييم | 5.00/5 مجموع تقييمات 8 |
| المطور | Unknown |
| نوع الدفع | free |
| موقع الإضافة | https://github.com/eemeli/chrome-kill-sticky |
| عنوان صفحة المساعدة | https://github.com/eemeli/chrome-kill-sticky/issues |
| اللغات المدعومة | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"browser_action": {
"default_title": "Remove all elements with fixed or sticky positions"
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Alt+K",
"mac": "Command+K"
}
}
},
"description": "Remove all elements with fixed or sticky positions",
"manifest_version": 2,
"name": "Kill-Sticky",
"permissions": [
"activeTab"
],
"version": "1.4.0"
} | |