- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
注意:这是对my previous one的后续问题。
我决定通过#posts
元素内的扩展程序将帖子显示在仪表板上。现在我的问题是 Tumblr在滚动时会自动删除帖子的内容。
这是删除之前的普通帖子的示例:
<li class="post_container" data-pageable="post_110141415125">
<div class="post post_full ..." [...]>
<!-- ... -->
</div>
</li>
<li class="post_container" data-pageable="post_110141415125" style="border-radius: 3px; height: 207px; width: 540px; background-color: rgb(255, 255, 255);">
</li>
.post
中的DOM元素?removeChild
方法添加了此注入(inject)代码:function addScript(){
var script = document.createElement('script');
script.id = 'newRemoveChildScript'; ///just to find is faster in the code
script.src = chrome.extension.getURL("injectedCode.js");
$($('script')[0]).before(script); ///Script is indeed present, I checked that
}
window.onload = addScript;
injectedCode.js
文件,如下所示:(function (obj, method) {
function isPost(el) {
return (/^post_\d+$/.test(el.id) && ~el.className.indexOf('post'));
}
obj[method] = (function (obj_method) {
return function (child) {
if (isPost(child)) return child;
return obj_method.apply(this, arguments);
}
}(obj[method]));
}(Element.prototype, 'removeChild'));
最佳答案
劫持Tumblr仪表板行为
免责声明:此处完全合法,请不要惊慌!
您要问的是并不是一件容易的事,但是实际上您可以阻止Tumblr在离开视口(viewport)时在滚动时隐藏帖子。更准确地说,高级程序员实际上可以操纵任何Tumblr方法,使其表现出所需的状态,但是,现在,让我们集中讨论您的问题。
为什么Tumblr在滚动时会删除帖子?
Tumblr删除了帖子的内容,使页面变淡,并且由于包含大量元素,您可以继续浏览而不会出现任何滞后和/或滚动。想象一下,连续向下滚动一个小时:您的破折号将包含数千个帖子,并且由于每次滚动都必须移动过多的内容,因此浏览器可能会冻结。
Tumblr如何做到这一点?
我没有检查和理解Tumblr代码的每一行,因为它们都是打包的/最小化的,而且实际上不可能理解任何方法的一行(除非您在Tumblr工作,在这种情况下,恭喜您),但是,基本上,我放了一些DOM breakpoints,并且检查了将帖子移出视口(viewport)时删除帖子的部分代码。
简而言之,这就是它的作用:
li.post_container
元素上的 DOM断点,您将能够看到这些侦听器位于dashboard.js
JavaScript文件中。function j(t,v) { try{ t.removeChild(v) } catch(u){} }
其中t
是li.post_container
和v
是其子代:div#post_[id]
。div#post_[id]
中删除了li.post_container
元素。#posts
元素的高度,该元素保存所有帖子,否则删除帖子的内容会使页面向下滚动H
像素,其中H是高度被删除的职位。index.js
中,并且我什至没有仔细研究它,因为它根本无法阅读:<li class="post_container" [...]>
<div id="post_[id]" class="post post_full ..." [...]>
<!-- post body... -->
</div>
</li>
对此:<li class="post_container" [...] style="border-radius: 3px; height: Hpx; width: Wpx; background-color: rgb(255, 255, 255);">
</li>
防止Tumblr代码删除帖子(确实有些小技巧)!important
防止内联样式覆盖它们。这是我们要添加的CSS:li.post_container {
height: auto !important;
width: 540px !important;
/* 540px is the default width
* change it to any amount that applies to your layout
*/
}
或者,使用JavaScript,我们可以执行以下操作:var s = document.createElement('style');
s.textContent = 'li.post_container{height:auto!important;width:540px!important;}';
document.head.appendChild(s);
防止删除帖子:简便(愚蠢)方式removeChild
的Element.prototype
方法,并将其命名为_removeChild
。Element.prototype._removeChild = Element.prototype.removeChild
Element.prototype.removeChild = function(child) {
// Check if the element is a post (e.g. the id looks like "post_123456...")
if (/^post_\d+$/.test(child.id)) {
// If so, stop here by returning the post
// This will make Tumblr believe the post has been removed
return child;
}
// Otherwise the element isn't a post, so we can remove it
return Element.prototype._removeChild.apply(this, arguments);
}
代码长度,无注释:5行post
和post_full
类,或者它的parentElement
是否具有post_container
类,依此类推……由您决定。Element.prototype.removeChild
方法。这是我们要做的:Element.prototype.removeChild
方法,为其添加一个“过滤器”。isPost()
),以过滤将要删除的元素。Element.prototype.removeChild
方法,使其表现如下:isPost()
检查元素以删除。Element.prototype.removeChild
方法调用原始.apply
方法。(function (obj, method) {
// This is all wrapped inside a closure
// to make the new removeChild method remember the isPost function
// and maintain all the work invisible to the rest of the code in the page
function isPost(el) {
// Check if the element is a post
// This will return true if el is a post, otherwise false
return (/^post_\d+$/.test(el.id) && ~el.className.indexOf('post'));
}
// Edit the Element.prototype.removeChild assigning to it our own function
obj[method] = (function (obj_method) {
return function (child) {
// This is the function that will be assigned to removeChild
// It is wrapped in a closure to make the check before removing the element
// Check if the element that is going to be removed is a post
if (isPost(child)) return child;
// If so, stop here by returning the post
// This will make Tumblr believe the post has been removed
// Otherwise continue and remove it
return obj_method.apply(this, arguments);
}
}(obj[method]));
}(Element.prototype, 'removeChild'));
代码长度,不带注释:11行window
对象中工作,因此内容脚本代码无法与页面代码交互,因此您必须将代码直接从内容脚本插入页面中。为此,您需要创建一个<script>
元素并将其插入页面的<head>
中。您可以将要注入(inject)的代码存储在新脚本中(我们将其称为injectedCode.js
),然后使用chrome.runtime.getURL
获取要在<script>
src中使用的绝对URL。injectedCode.js
文件添加到"web_accessible_resources"
中的 manifest.json
field中,以使其可从Tumblr访问,如下所示:"web_accessible_resources": ["/injectedCode.js"]
然后,您可以创建一个<script>
,将.src
设置为您的injectedCode.js
,如下所示:/* In your content script: */
var s = document.createElement('script');
s.src = chrome.extension.getURL("/injectedCode.js");
document.head.appendChild(s);
尾注MutationObserver
来检查子树的修改,删除所有帖子并使用新的个人事件和方法创建新的容器来模仿Tumblr的事件,插入Tumblr代码并直接对其进行编辑(几乎不可能,合法性不高),依此类推。关于javascript - 防止在Tumblr仪表板上删除DOM元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28338450/
关闭。这个问题是opinion-based .它目前不接受答案。 想要改进这个问题? 更新问题,以便 editing this post 可以用事实和引用来回答它. 关闭 6 年前。 Improve
Polymer的light DOM和local DOM有什么区别?来自文档(1): The DOM that an element creates and manages is called its
当内容添加到网页时,我需要触发一个 Action 。更新可能具有不同的性质(例如 AJAX、延迟脚本、用户操作)并且不受我的控制。 我想使用 DOM 突变事件,但它们并非在所有浏览器中都可用。是否有为
我刚遇到一个有趣的情况,我有一个提交 放置在 内的 native 自定义元素的 Shadow DOM 内. Select #shadow-root ...
假设有一个滚动列表,当我插入一些新的 DOM 附加到当前 dom 时,它工作正常。上拉 但是如果我之前插入一些新的 DOM,新的 DOM 将在视口(viewport)中,而旧的 DOM 将被下推。下拉
在我的项目中实现 Shadow DOM 是否会使它们像 React 使用的虚拟 DOM 一样更快? 最佳答案 它们是不同用途的不同事物,因此比较性能没有意义。 虚拟 DOM 虚拟 DOM 旨在避免对
在我的页面内容上,我将多张卡片组织成网格 __________________ | ____ ____ | | | | | | | | | | | |
是否可以在浏览器中看到(调试)从 DOM 元素触发的自定义事件? 假设我想查看 Bootstrap Collapse 的哪个特定元素触发了 show.bs.collapse event ,我能以某种方
我正在生成用于客户端的 XPaths 服务器端,我很困惑为什么在 DOM 中找不到表路径(即 td 中的内容)。 事实证明,现代浏览器(至少是 Chrome 和 Firefox)插入了 tbody在文
是否可以检索文本节点的几何位置(即从父元素、页面等的顶部/左侧偏移量)? 最佳答案 不是直接的。 TextNode 没有用于测量视口(viewport)定位的原始 IE 偏移*(和类似的)扩展。 仅在
以下语句中的 DOM 元素的含义是什么? Statement #1 You can add multiple classes to a single DOM element. Statement #2
有没有办法让 firebug(或任何其他浏览器,或使用任何其他工具)阻止任何 dom 操作的发生?有时布局调试充满悬停事件的屏幕是不可能的,因为元素可能会消失,并且您看不到它们的复合布局。 最佳答案
我需要在html文档中搜索 text here 然后输出完整的节点路径(CSS或XPATH) 例如 html > body > div class ="something" > table > tr
这是我的一个页面的典型加载时间如何拆分为:- Domain Lookup 0 0 % Connect 134 .3% Request
我的 .on() 工作时遇到一些问题。我的网站是here . 如果你看看 www.eliteweb-creation.co.uk/dev/js/nav.js,我正在 mouseenter 和 mous
我是 Javascript 的新手,负责将我们产品的 UI 从 YUI2 迁移到 YUI3。看起来哪里都没有迁移指南,所以我现在正在浏览互联网帖子和 yui 文档。 在我的全局范围内,我临时添加了类似
我想和实习生一起测试一些 DOM 相关的东西,不需要特定的固定装置,只是一般的 DOM 东西,比如我改变了 Element.prototype。这是否需要通过本地 Selenium 服务器(或 sau
我是 HTML 和 HTML5 的初学者。 当我阅读以下内容时 link ,我找到了术语 DOM 和 DOM API。我通读了维基百科,但无法理解其背后的全部思想。 谁能给我解释一下: 文档对象模型
我有两个主要问题。 Object 之类的扩展是否算数? 什么是 DOM 包装? http://perfectionkills.com/whats-wrong-with-extending-the-do
对不起查询,原型(prototype),雅虎 YUI,道场在考虑小的时候不吸引我。我想要一个模块化的库,代码尽可能小,最多 20Kb [un compressed] 是我所期望的。应该提供 Dom 操
我是一名优秀的程序员,十分优秀!